Make the MJPEG decoder return -1 when no image was decoded so that decode

errors are actually recognizable as such.

Originally committed as revision 19343 to svn://svn.ffmpeg.org/ffmpeg/trunk
release/0.6
Reimar Döffinger 16 years ago
parent 643fd8a198
commit 1496b04c28
  1. 2
      libavcodec/mjpegdec.c

@ -1479,6 +1479,8 @@ not_the_end:
}
}
}
av_log(avctx, AV_LOG_FATAL, "No JPEG data found in image\n");
return -1;
the_end:
av_log(avctx, AV_LOG_DEBUG, "mjpeg decode frame unused %td bytes\n", buf_end - buf_ptr);
// return buf_end - buf_ptr;

Loading…
Cancel
Save