diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2012-03-24 20:28:43 +0100 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2012-03-26 20:03:56 +0200 |
commit | fca62f05005567514b5daaea230ba9365e202201 (patch) | |
tree | 5c0539c6e500b5aff2a2e09618ecd57560fd0efe /libavformat/isom.c | |
parent | 5afd9a80dbf020847625fc84d1e837f6372de4ca (diff) | |
download | ffmpeg-fca62f05005567514b5daaea230ba9365e202201.tar.gz |
Support FLIC in MOV.
Fixes trac issue #626.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
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 f12ba2c5b2..04e3f3f0d0 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -231,6 +231,7 @@ const AVCodecTag ff_codec_movvideo_tags[] = { { CODEC_ID_PRORES, MKTAG('a', 'p', 'c', 's') }, /* Apple ProRes 422 LT */ { 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_FLIC, MKTAG('f', 'l', 'i', 'c') }, { CODEC_ID_NONE, 0 }, }; |