diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-11-14 14:39:18 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-11-14 20:24:38 +0100 |
commit | 4b39cc1a093c239412ded522c4a899744e7f2008 (patch) | |
tree | 086761c60c2e1e53c0a0cfc9ed6f5df643edfcf8 /libavformat | |
parent | a2448cfe167a4cd4eb631318550d4eef38fca24a (diff) | |
download | ffmpeg-4b39cc1a093c239412ded522c4a899744e7f2008.tar.gz |
riff: support ProRes in avi (APCN fourcc)
Diffstat (limited to 'libavformat')
-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 0e16ec74bc..b91f8f1bdf 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -347,6 +347,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { AV_CODEC_ID_G2M, MKTAG('G', '2', 'M', '3') }, { AV_CODEC_ID_G2M, MKTAG('G', '2', 'M', '4') }, { AV_CODEC_ID_FIC, MKTAG('F', 'I', 'C', 'V') }, + { AV_CODEC_ID_PRORES, MKTAG('A', 'P', 'C', 'N') }, { AV_CODEC_ID_NONE, 0 } }; |