diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-09-19 12:20:42 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-09-19 12:20:42 +0200 |
commit | 4a9b069b6742f78ed7511d2a87af621ab1d43a59 (patch) | |
tree | ed800e9bd68f0a8d7d21147821c4b9090a51a78b /libavformat/isom.c | |
parent | 8593b743a81263eebec79bb13b7b925bd024c5e1 (diff) | |
download | ffmpeg-4a9b069b6742f78ed7511d2a87af621ab1d43a59.tar.gz |
Support 3IVD in isom, produced by 3ivx DivX Doctor.
Fixes ticket #486.
Diffstat (limited to 'libavformat/isom.c')
-rw-r--r-- | libavformat/isom.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c index 5955bb1fce..9b829a3fb9 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -215,6 +215,8 @@ const AVCodecTag codec_movvideo_tags[] = { { CODEC_ID_PRORES, MKTAG('a', 'p', 'c', 'o') }, /* Apple ProRes 422 Proxy */ { CODEC_ID_PRORES, MKTAG('a', 'p', '4', 'h') }, /* Apple ProRes 4444 */ + { CODEC_ID_MSMPEG4V3, MKTAG('3', 'I', 'V', 'D') }, /* 3ivx DivX Doctor */ + { CODEC_ID_NONE, 0 }, }; |