diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2016-03-26 12:02:49 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2016-05-19 18:26:32 +0200 |
commit | 1ab8e03a457a01df11eeb6ee13a0ca66f07ff863 (patch) | |
tree | dd52aab3a1e4237c1f954a9b78589319fbecabb3 /libavformat/mpegts.h | |
parent | 7ecfe4dc363435c81e66dd14881dc0b0ccc73fb1 (diff) | |
download | ffmpeg-1ab8e03a457a01df11eeb6ee13a0ca66f07ff863.tar.gz |
lavf/mpegtsenc: set metadata stream type and write descriptor for ID3 packets
This allow to remux data packets which are then recognized as ID3 packets.
Diffstat (limited to 'libavformat/mpegts.h')
-rw-r--r-- | libavformat/mpegts.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mpegts.h b/libavformat/mpegts.h index 0cdbc76b37..88b504d955 100644 --- a/libavformat/mpegts.h +++ b/libavformat/mpegts.h @@ -51,6 +51,7 @@ #define STREAM_TYPE_AUDIO_AAC 0x0f #define STREAM_TYPE_AUDIO_AAC_LATM 0x11 #define STREAM_TYPE_VIDEO_MPEG4 0x10 +#define STREAM_TYPE_METADATA 0x15 #define STREAM_TYPE_VIDEO_H264 0x1b #define STREAM_TYPE_VIDEO_HEVC 0x24 #define STREAM_TYPE_VIDEO_CAVS 0x42 |