]> git.sesse.net Git - ffmpeg/commitdiff
mjpegdec: properly report unsupported disabled features
authorLuca Barbato <lu_zero@gentoo.org>
Tue, 14 May 2013 13:27:26 +0000 (15:27 +0200)
committerLuca Barbato <lu_zero@gentoo.org>
Thu, 16 May 2013 12:05:46 +0000 (14:05 +0200)
When JPEG-LS support is disabled the decoder would feed the
data to the JPEG Lossless decode_*_scan function resulting in
faulty decoding.

CC: libav-stable@libav.org
libavcodec/mjpegdec.c

index 61ebabc77d8438dfd942de923188991fc6b0da03..ef46c5f2a2e775a7d0b58b8afdb287e97a61b702 100644 (file)
@@ -1485,6 +1485,12 @@ int ff_mjpeg_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
             else if (start_code == COM)
                 mjpeg_decode_com(s);
 
+            if (!CONFIG_JPEGLS_DECODER &&
+                (start_code == SOF48 || start_code == LSE)) {
+                av_log(avctx, AV_LOG_ERROR, "JPEG-LS support not enabled.\n");
+                return AVERROR(ENOSYS);
+            }
+
             switch (start_code) {
             case SOI:
                 s->restart_interval = 0;