diff options
author | James Almer <jamrial@gmail.com> | 2018-07-07 16:33:41 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2018-07-20 11:43:25 -0300 |
commit | 9ca7ad246d536a78245b0d12dab4590004ec775d (patch) | |
tree | 3c22907cd94cab5c5a41969358f315b024f12a28 /libavformat/isom.c | |
parent | a754af942a6ab0e98eac0da36fcf41ffca77c952 (diff) | |
download | ffmpeg-9ca7ad246d536a78245b0d12dab4590004ec775d.tar.gz |
avformat/mov: add support for AV1 streams
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/isom.c')
-rw-r--r-- | libavformat/isom.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c index 2792371c25..ce66d1bcd4 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -188,6 +188,7 @@ const AVCodecTag ff_codec_movvideo_tags[] = { { AV_CODEC_ID_VP8, MKTAG('v', 'p', '0', '8') }, /* VP8 */ { AV_CODEC_ID_VP9, MKTAG('v', 'p', '0', '9') }, /* VP9 */ + { AV_CODEC_ID_AV1, MKTAG('a', 'v', '0', '1') }, /* AV1 */ { AV_CODEC_ID_MPEG1VIDEO, MKTAG('m', '1', 'v', ' ') }, { AV_CODEC_ID_MPEG1VIDEO, MKTAG('m', '1', 'v', '1') }, /* Apple MPEG-1 Camcorder */ |