Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2013-10-23 11:18:16 +0400
committerHendrik Leppkes <h.leppkes@gmail.com>2013-10-25 19:06:46 +0400
commit20f355077ea37e36a083f97804bcf348637a5dc6 (patch)
tree513a3fd51516154b76cba42e703989043bc66076
parentd7a1fdf2ce75360575a8f08b8e4c12067c56c39d (diff)
riff: add HEVC tags
-rw-r--r--libavformat/riff.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c
index 849c1bf9f1..52a909baa6 100644
--- a/libavformat/riff.c
+++ b/libavformat/riff.c
@@ -352,6 +352,9 @@ const AVCodecTag ff_codec_bmp_tags[] = {
{ AV_CODEC_ID_G2M, MKTAG('G', '2', 'M', '2') },
{ AV_CODEC_ID_G2M, MKTAG('G', '2', 'M', '3') },
{ AV_CODEC_ID_G2M, MKTAG('G', '2', 'M', '4') },
+ { AV_CODEC_ID_HEVC, MKTAG('H', 'E', 'V', 'C') },
+ { AV_CODEC_ID_HEVC, MKTAG('H', 'V', 'C', '1') },
+ { AV_CODEC_ID_HEVC, MKTAG('H', 'M', '1', '0') },
{ AV_CODEC_ID_NONE, 0 }
};