Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
27
Src/Plugins/Input/in_flv/FLVStreamHeader.h
Normal file
27
Src/Plugins/Input/in_flv/FLVStreamHeader.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
#ifndef NULLSOFT_FLVSTREAMHEADER_H
|
||||
#define NULLSOFT_FLVSTREAMHEADER_H
|
||||
|
||||
#include <bfc/platform/types.h>
|
||||
namespace FLV
|
||||
{
|
||||
enum
|
||||
{
|
||||
FRAME_TYPE_AUDIO = 0x8,
|
||||
FRAME_TYPE_VIDEO = 0x9,
|
||||
FRAME_TYPE_METADATA = 0x12,
|
||||
};
|
||||
}
|
||||
class FLVStreamHeader
|
||||
{
|
||||
public:
|
||||
bool Read(unsigned __int8 *data, size_t size); // size must be >=15, returns "true" if this was a valid header
|
||||
|
||||
// attributes, consider these read-only
|
||||
uint32_t previousSize;
|
||||
uint8_t type;
|
||||
uint32_t dataSize;
|
||||
uint32_t timestamp;
|
||||
uint32_t streamID;
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue