Default values added
This commit is contained in:
parent
755fcd00c6
commit
c633734d07
8 changed files with 28 additions and 17 deletions
|
@ -6,15 +6,16 @@ class Box_avcC {
|
|||
Box_avcC( );
|
||||
~Box_avcC();
|
||||
Box * GetBox();
|
||||
void SetReserved( );
|
||||
void SetDataReferenceIndex( uint16_t DataReferenceIndex );
|
||||
void SetDimensions ( uint16_t Width, uint16_t Height );
|
||||
void SetDataReferenceIndex( uint16_t DataReferenceIndex = 0 );
|
||||
void SetDimensions ( uint16_t Width = 0, uint16_t Height = 0);
|
||||
void SetResolution ( uint32_t Horizontal = 0x00480000, uint32_t Vertical = 0x00480000 );
|
||||
void SetFrameCount ( uint16_t FrameCount = 1 );
|
||||
void SetCompressorName ( std::string CompressorName );
|
||||
void SetCompressorName ( std::string CompressorName = "");
|
||||
void SetDepth ( uint16_t Depth = 0x0018 );
|
||||
void SetDefaults( );
|
||||
private:
|
||||
Box * Container;
|
||||
|
||||
void SetReserved( );
|
||||
void SetDefaults( );
|
||||
};//Box_ftyp Class
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue