Default values added

This commit is contained in:
Erik Zandvliet 2011-01-22 20:36:28 +01:00
parent 755fcd00c6
commit c633734d07
8 changed files with 28 additions and 17 deletions

View file

@ -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