winamp/Src/libvp6/include/AVC.hpp

30 lines
496 B
C++
Raw Normal View History

2024-09-24 12:54:57 +00:00
#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