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 Apple Intermediate Codec video streams
10 //
11 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
12 
13 //---------------------------------------------------------------------------
14 #ifndef MediaInfo_AicH
15 #define MediaInfo_AicH
16 //---------------------------------------------------------------------------
17 
18 //---------------------------------------------------------------------------
19 #include "MediaInfo/File__Analyze.h"
20 //---------------------------------------------------------------------------
21 
22 namespace MediaInfoLib
23 {
24 
25 //***************************************************************************
26 // Class File_Aic
27 //***************************************************************************
28 
29 class File_Aic : public File__Analyze
30 {
31 private :
32     //Streams management
33     void Streams_Fill();
34 
35     //Buffer - Per element
36     void Header_Parse ();
37     void Data_Parse ();
38 
39     //Temp
40     int16u Width;
41     int16u Height;
42     int8u  FieldFrame;
43 };
44 
45 } //NameSpace
46 
47 #endif
48