diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2012-05-26 13:49:41 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-01-14 01:39:16 +0100 |
commit | a9d700f2127fb1e9aafeab00164d625473ce62ed (patch) | |
tree | f1c2d055ebc251a39a70d9f9cb7481e314a9042e /libavformat/mpegts.c | |
parent | f2e12f8942e5434df3d0f41851a1560fc4663dae (diff) | |
download | ffmpeg-a9d700f2127fb1e9aafeab00164d625473ce62ed.tar.gz |
mpegts: identify h264 mvc streams
This fixes missdetecting such streams as something else like AAC
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/mpegts.c')
-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 f61388b5c1..6fb186e627 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -674,6 +674,7 @@ static const StreamType ISO_types[] = { { 0x11, AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_AAC_LATM }, /* LATM syntax */ #endif { 0x1b, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_H264 }, + { 0x20, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_H264 }, { 0x24, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_HEVC }, { 0x42, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_CAVS }, { 0xd1, AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_DIRAC }, |