From a36c737490d981cfad90164fb4e58902774d4414 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Thu, 4 Feb 2016 17:40:06 +0100 Subject: [PATCH] lavf/isom: Add more code points for H264. Defined by the MP4 registration authority. Fixes ticket #5217. --- libavformat/isom.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavformat/isom.c b/libavformat/isom.c index e55738bd85..2ca126585f 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -160,6 +160,9 @@ const AVCodecTag ff_codec_movvideo_tags[] = { { AV_CODEC_ID_HEVC, MKTAG('h', 'v', 'c', '1') }, /* HEVC/H.265 which indicates parameter sets shall not be in ES */ { AV_CODEC_ID_H264, MKTAG('a', 'v', 'c', '1') }, /* AVC-1/H.264 */ + { AV_CODEC_ID_H264, MKTAG('a', 'v', 'c', '2') }, + { AV_CODEC_ID_H264, MKTAG('a', 'v', 'c', '3') }, + { AV_CODEC_ID_H264, MKTAG('a', 'v', 'c', '4') }, { AV_CODEC_ID_H264, MKTAG('a', 'i', '5', 'p') }, /* AVC-Intra 50M 720p24/30/60 */ { AV_CODEC_ID_H264, MKTAG('a', 'i', '5', 'q') }, /* AVC-Intra 50M 720p25/50 */ { AV_CODEC_ID_H264, MKTAG('a', 'i', '5', '2') }, /* AVC-Intra 50M 1080p25/50 */