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>2017-08-04 20:12:12 +0300
commitbf75ec2c3a7963424e06a12a5bd471fd88f0a40b (patch)
tree6f2bd0c56e444a2edeb3a53bb52326cfb4935926 /libavformat
parenta0c97c624c5785749cc3544c7f99db6d6c8c6d68 (diff)
riff: add HEVC tags
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/riff.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c
index 3f0b390774..46149123a9 100644
--- a/libavformat/riff.c
+++ b/libavformat/riff.c
@@ -463,6 +463,11 @@ const AVCodecTag ff_codec_bmp_tags[] = {
{ AV_CODEC_ID_AV1, MKTAG('A', 'V', '0', '1') },
{ AV_CODEC_ID_MSCC, MKTAG('M', 'S', 'C', 'C') },
{ AV_CODEC_ID_SRGC, MKTAG('S', 'R', 'G', 'C') },
+
+ { 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 }
};