diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-26 22:27:29 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-26 22:27:29 +0200 |
commit | dc07e576ce72814c79c4e5a9ea2805291296a3f5 (patch) | |
tree | caf67589f04d633d4ac36e4684fc48181469a7e9 /libavformat/isom.c | |
parent | 29a43bd588b03766d0e9accbaebfc255a1709862 (diff) | |
download | ffmpeg-dc07e576ce72814c79c4e5a9ea2805291296a3f5.tar.gz |
avformat/isom: Use AVRN codec to handle AVDJ
Fixes cropping
Fixes Ticket4741
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/isom.c')
-rw-r--r-- | libavformat/isom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c index 5673c512b0..463033d6dc 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -110,7 +110,7 @@ const AVCodecTag ff_codec_movvideo_tags[] = { { AV_CODEC_ID_MJPEG, MKTAG('j', 'p', 'e', 'g') }, /* PhotoJPEG */ { AV_CODEC_ID_MJPEG, MKTAG('m', 'j', 'p', 'a') }, /* Motion-JPEG (format A) */ - { AV_CODEC_ID_MJPEG, MKTAG('A', 'V', 'D', 'J') }, /* MJPEG with alpha-channel (AVID JFIF meridien compressed) */ + { AV_CODEC_ID_AVRN , MKTAG('A', 'V', 'D', 'J') }, /* MJPEG with alpha-channel (AVID JFIF meridien compressed) */ /* { AV_CODEC_ID_MJPEG, MKTAG('A', 'V', 'R', 'n') }, *//* MJPEG with alpha-channel (AVID ABVB/Truevision NuVista) */ { AV_CODEC_ID_MJPEG, MKTAG('d', 'm', 'b', '1') }, /* Motion JPEG OpenDML */ { AV_CODEC_ID_MJPEGB, MKTAG('m', 'j', 'p', 'b') }, /* Motion-JPEG (format B) */ |