diff options
author | Timo Rothenpieler <timo@rothenpieler.org> | 2025-01-15 01:19:57 +0100 |
---|---|---|
committer | Timo Rothenpieler <timo@rothenpieler.org> | 2025-01-18 21:57:02 +0100 |
commit | ced9fddec0e45e1ce1b3425a1fed66af971e934c (patch) | |
tree | 7b88fff3bb31422cf150a07f4ade90a5fc6e4cb7 /libavformat/flv.h | |
parent | 4c96d6bf75357ab13808efc9f08c1b41b1bf5bdf (diff) | |
download | ffmpeg-ced9fddec0e45e1ce1b3425a1fed66af971e934c.tar.gz |
avformat/flvdec: implement support for parsing ModEx data
Diffstat (limited to 'libavformat/flv.h')
-rw-r--r-- | libavformat/flv.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/flv.h b/libavformat/flv.h index 74d3b8de8b..d8f7980f2e 100644 --- a/libavformat/flv.h +++ b/libavformat/flv.h @@ -130,6 +130,7 @@ enum { PacketTypeMetadata = 4, PacketTypeMPEG2TSSequenceStart = 5, PacketTypeMultitrack = 6, + PacketTypeModEx = 7, }; enum { @@ -140,6 +141,10 @@ enum { }; enum { + PacketModExTypeTimestampOffsetNano = 0, +}; + +enum { AudioChannelOrderUnspecified = 0, AudioChannelOrderNative = 1, AudioChannelOrderCustom = 2, |