diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2016-07-24 21:17:10 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-08-24 14:45:08 +0200 |
commit | d42809f9835a4e9e5c7c63210abb09ad0ef19cfb (patch) | |
tree | 450051e5687e8caf33eb6ac3c6465792b67a73d2 /libavformat/riff.c | |
parent | 24130234cd9dd733116d17b724ea4c8e12ce097a (diff) | |
download | ffmpeg-d42809f9835a4e9e5c7c63210abb09ad0ef19cfb.tar.gz |
av1: Add codec_id and basic demuxing support
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavformat/riff.c')
-rw-r--r-- | libavformat/riff.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c index 1e1e4d8c61..54bef835ba 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -367,6 +367,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_RSCC, MKTAG('R', 'S', 'C', 'C') }, { AV_CODEC_ID_RSCC, MKTAG('I', 'S', 'C', 'C') }, { AV_CODEC_ID_MAGICYUV, MKTAG('M', 'A', 'G', 'Y') }, + { AV_CODEC_ID_AV1, MKTAG('A', 'V', '0', '1') }, { AV_CODEC_ID_NONE, 0 } }; |