Welcome to mirror list, hosted at ThFree Co, Russian Federation.

File_Aic.h « Video « MediaInfo « MediaInfo « thirdparty « src - github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 985e8761bdc4db43be54f28f6302d156ac3b184a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*  Copyright (c) MediaArea.net SARL. All Rights Reserved.
 *
 *  Use of this source code is governed by a BSD-style license that can
 *  be found in the License.html file in the root of the source tree.
 */

//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//
// Information about Apple Intermediate Codec video streams
//
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

//---------------------------------------------------------------------------
#ifndef MediaInfo_AicH
#define MediaInfo_AicH
//---------------------------------------------------------------------------

//---------------------------------------------------------------------------
#include "MediaInfo/File__Analyze.h"
//---------------------------------------------------------------------------

namespace MediaInfoLib
{

//***************************************************************************
// Class File_Aic
//***************************************************************************

class File_Aic : public File__Analyze
{
private :
    //Streams management
    void Streams_Fill();

    //Buffer - Per element
    void Header_Parse ();
    void Data_Parse ();

    //Temp
    int16u Width;
    int16u Height;
    int8u  FieldFrame;
};

} //NameSpace

#endif