1 /*  Copyright (c) MediaArea.net SARL. All Rights Reserved.
2  *
3  *  Use of this source code is governed by a BSD-style license that can
4  *  be found in the License.html file in the root of the source tree.
5  */
6 
7 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
8 //
9 // Information about Canopus streams
10 //
11 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
12 
13 //---------------------------------------------------------------------------
14 #ifndef MediaInfo_File_CanopusH
15 #define MediaInfo_File_CanopusH
16 //---------------------------------------------------------------------------
17 
18 //---------------------------------------------------------------------------
19 #include "MediaInfo/File__Analyze.h"
20 //---------------------------------------------------------------------------
21 
22 namespace MediaInfoLib
23 {
24 
25 //***************************************************************************
26 // Class File_Theora
27 //***************************************************************************
28 
29 class File_Canopus : public File__Analyze
30 {
31 public :
32     //Constructor/Destructor
33     File_Canopus();
34 
35 private :
36     //Streams management
37     void Streams_Fill();
38 
39     //Buffer - Global
40     void Read_Buffer_Continue ();
41 };
42 
43 
44 } //NameSpace
45 
46 #endif
47