diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-02-23 00:31:50 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-03-09 18:09:39 +0100 |
commit | 073cd30fb4dc1c2a885c62540e3cfaac1f17c21b (patch) | |
tree | d1980a05bc7577ce31ddd4a0416f849e3348e2d9 /libavformat | |
parent | 31e558fbcfec8fa9fddf564ab8360384706e41c0 (diff) | |
download | ffmpeg-streaming-073cd30fb4dc1c2a885c62540e3cfaac1f17c21b.zip ffmpeg-streaming-073cd30fb4dc1c2a885c62540e3cfaac1f17c21b.tar.gz |
isom: Support MPEG-2 video mov files from FPC5
Diffstat (limited to 'libavformat')
-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 3b786d7..3b54509 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -205,6 +205,7 @@ const AVCodecTag ff_codec_movvideo_tags[] = { { AV_CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', 'h', 'd') }, /* XDCAM HD 540p */ { AV_CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', 'h', '2') }, /* XDCAM HD422 540p */ { AV_CODEC_ID_MPEG2VIDEO, MKTAG('A', 'V', 'm', 'p') }, /* AVID IMX PAL */ + { AV_CODEC_ID_MPEG2VIDEO, MKTAG('m', 'p', '2', 'v') }, /* FCP5 */ { AV_CODEC_ID_JPEG2000, MKTAG('m', 'j', 'p', '2') }, /* JPEG 2000 produced by FCP */ |