diff options
author | Jean-Francois Mauguit <jfmauguit@mac.com> | 2024-09-24 09:03:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 09:03:25 -0400 |
commit | bab614c421ed7ae329d26bf028c4a3b1d2450f5a (patch) | |
tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/Plugins/Input/in_flv/FLVStreamHeader.h | |
parent | 4bde6044fddf053f31795b9eaccdd2a5a527d21f (diff) | |
parent | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (diff) | |
download | winamp-bab614c421ed7ae329d26bf028c4a3b1d2450f5a.tar.gz |
Merge pull request #5 from WinampDesktop/community
Merge to main
Diffstat (limited to 'Src/Plugins/Input/in_flv/FLVStreamHeader.h')
-rw-r--r-- | Src/Plugins/Input/in_flv/FLVStreamHeader.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Src/Plugins/Input/in_flv/FLVStreamHeader.h b/Src/Plugins/Input/in_flv/FLVStreamHeader.h new file mode 100644 index 00000000..855d4159 --- /dev/null +++ b/Src/Plugins/Input/in_flv/FLVStreamHeader.h @@ -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
\ No newline at end of file |