Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
29
Src/libvp6/include/AVC.hpp
Normal file
29
Src/libvp6/include/AVC.hpp
Normal file
|
@ -0,0 +1,29 @@
|
|||
#ifndef AVC_HPP
|
||||
#define AVC_HPP
|
||||
|
||||
namespace AVC
|
||||
{
|
||||
struct Extra
|
||||
{
|
||||
unsigned __int16 samplesPerBlock;
|
||||
unsigned __int16 blocksPerChunk;
|
||||
unsigned __int32 version;
|
||||
unsigned __int32 datarate;
|
||||
unsigned __int32 flags;
|
||||
};
|
||||
|
||||
enum
|
||||
{
|
||||
kFormatTag_SingleBlockPerChunk = 0x0500,
|
||||
kFormatTag_MultipleBlocksPerChunk = 0x0501
|
||||
};
|
||||
|
||||
enum
|
||||
{
|
||||
kArchaicFlag = 1,
|
||||
kFancyFlag = 2,
|
||||
kLooseFlag = 4
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue