diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-02-10 14:33:24 -0500 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-02-17 12:18:20 -0500 |
commit | c78dc12118cb5b2a69a17f38c69f77a42e89a9c4 (patch) | |
tree | fa52364a20c0edf260d478fe2ed0c0efe7bdc662 | |
parent | 42c8f92e2fa390fa17b03d37b4323ec0d721d4cd (diff) | |
download | ffmpeg-c78dc12118cb5b2a69a17f38c69f77a42e89a9c4.tar.gz |
riff: Support ProRes in avi (APCH fourcc)
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
-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 776a25fc05..a093986aa0 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -349,6 +349,7 @@ const AVCodecTag ff_codec_bmp_tags[] = { { 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_PRORES, MKTAG('A', 'P', 'C', 'H') }, { AV_CODEC_ID_NONE, 0 } }; |