qtrle: use AV_LOG_ERROR in an error message.

pull/10/head
Anton Khirnov 12 years ago
parent 7b4f91155b
commit d8a74d1d95
  1. 2
      libavcodec/qtrle.c

@ -48,7 +48,7 @@ typedef struct QtrleContext {
#define CHECK_PIXEL_PTR(n) \
if ((pixel_ptr + n > pixel_limit) || (pixel_ptr + n < 0)) { \
av_log (s->avctx, AV_LOG_INFO, "Problem: pixel_ptr = %d, pixel_limit = %d\n", \
av_log (s->avctx, AV_LOG_ERROR, "Problem: pixel_ptr = %d, pixel_limit = %d\n",\
pixel_ptr + n, pixel_limit); \
return; \
} \

Loading…
Cancel
Save