diff options
author | John Högberg <john.hogberg@ericsson.com> | 2015-06-29 14:57:20 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2015-06-30 10:08:16 +0200 |
commit | 42bc768e5240ec01237ad2eb7c69b917158de258 (patch) | |
tree | b1aa0cc98014efe4092e849fa4e6123bb2d58b42 | |
parent | 1b4c468477f3b8d372da8ef4e5405539ad9c1501 (diff) | |
download | ffmpeg-42bc768e5240ec01237ad2eb7c69b917158de258.tar.gz |
mpegts: Add jpeg2000 stream type
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-rw-r--r-- | libavformat/mpegts.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 8f61f1727d..f96d9f04a3 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -583,6 +583,7 @@ static const StreamType ISO_types[] = { { 0x10, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_MPEG4 }, { 0x11, AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_AAC_LATM }, /* LATM syntax */ { 0x1b, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_H264 }, + { 0x21, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_JPEG2000 }, { 0x24, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_HEVC }, { 0x42, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_CAVS }, { 0xd1, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_DIRAC }, |