OSDN Git Service

Set maximum lowres value for the MJPEG decoder to 3.
authorCarl Eugen Hoyos <cehoyos@ag.or.at>
Sat, 12 Feb 2011 14:29:10 +0000 (15:29 +0100)
committerJanne Grunau <janne-ffmpeg@jannau.net>
Wed, 16 Feb 2011 22:05:46 +0000 (23:05 +0100)
While 4 works for some samples, 3 is the correct value since 8x8
DCT is used by (m)jpeg.

Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
libavcodec/mjpegdec.c

index 69a1837..d0fc524 100644 (file)
@@ -1547,7 +1547,7 @@ AVCodec ff_mjpeg_decoder = {
     ff_mjpeg_decode_frame,
     CODEC_CAP_DR1,
     NULL,
-    .max_lowres = 4,
+    .max_lowres = 3,
     .long_name = NULL_IF_CONFIG_SMALL("MJPEG (Motion JPEG)"),
 };