OSDN Git Service

flicvideo: increase error level and fix error message in CHECK_PIXEL_PTR()
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Fri, 22 Apr 2011 22:07:15 +0000 (00:07 +0200)
committerStefano Sabatini <stefano.sabatini-lala@poste.it>
Sat, 23 Apr 2011 10:13:11 +0000 (12:13 +0200)
Also return AVERROR_INVALIDDATA rather than -1.

Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
libavcodec/flicvideo.c

index 913617d..126c4e1 100644 (file)
@@ -61,9 +61,9 @@
 
 #define CHECK_PIXEL_PTR(n) \
     if (pixel_ptr + n > pixel_limit) { \
-        av_log (s->avctx, AV_LOG_INFO, "Problem: pixel_ptr >= pixel_limit (%d >= %d)\n", \
+        av_log (s->avctx, AV_LOG_ERROR, "Invalid pixel_ptr = %d > pixel_limit = %d\n", \
         pixel_ptr + n, pixel_limit); \
-        return -1; \
+        return AVERROR_INVALIDDATA; \
     } \
 
 typedef struct FlicDecodeContext {