[FFmpeg-cvslog] mjpegdec: use correct variable in av_log invocation

Diego Biurrun git at videolan.org
Sat Mar 3 00:38:29 CET 2012


ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Wed Feb 29 19:47:49 2012 +0100| [1c4717be4f37e42938f1a1e6ec8c99e0142e52ba] | committer: Diego Biurrun

mjpegdec: use correct variable in av_log invocation

libavcodec/mjpegdec.c:1463: warning: format ‘%x’ expects type ‘unsigned int’, but argument 5 has type ‘const uint8_t *’

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1c4717be4f37e42938f1a1e6ec8c99e0142e52ba
---

 libavcodec/mjpegdec.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/mjpegdec.c b/libavcodec/mjpegdec.c
index 47a85cb..ea6230c 100644
--- a/libavcodec/mjpegdec.c
+++ b/libavcodec/mjpegdec.c
@@ -1460,7 +1460,7 @@ int ff_mjpeg_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
             goto the_end;
         } else if (unescaped_buf_size > (1U<<29)) {
             av_log(avctx, AV_LOG_ERROR, "MJPEG packet 0x%x too big (0x%x/0x%x), corrupt data?\n",
-                   start_code, unescaped_buf_ptr, buf_size);
+                   start_code, unescaped_buf_size, buf_size);
             return AVERROR_INVALIDDATA;
         } else {
             av_log(avctx, AV_LOG_DEBUG, "marker=%x avail_size_in_buf=%td\n",



More information about the ffmpeg-cvslog mailing list