From 53f903b7c5427cb18659f7775714e860c1c5fc39 Mon Sep 17 00:00:00 2001 From: Yusuke Nakamura Date: Sat, 12 Oct 2013 11:55:45 +0200 Subject: lavf/mov: Support HEVC demuxing. Signed-off-by: Michael Niedermayer --- libavformat/isom.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libavformat/isom.c') diff --git a/libavformat/isom.c b/libavformat/isom.c index 8cbf70b56e..48539e1a2d 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -151,6 +151,9 @@ const AVCodecTag ff_codec_movvideo_tags[] = { { AV_CODEC_ID_RAWVIDEO, MKTAG('W', 'R', 'A', 'W') }, + { AV_CODEC_ID_HEVC, MKTAG('h', 'v', 'c', '1') }, /* HEVC/H.265 which indicates parameter sets shall not be in ES */ + { AV_CODEC_ID_HEVC, MKTAG('h', 'e', 'v', '1') }, /* HEVC/H.265 which indicates parameter sets may be in ES */ + { AV_CODEC_ID_H264, MKTAG('a', 'v', 'c', '1') }, /* AVC-1/H.264 */ { 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 */ -- cgit v1.2.3