qtrle: use AV_LOG_ERROR in an error message.

This commit is contained in:
Anton Khirnov 2013-02-14 18:00:39 +01:00
parent 7b4f91155b
commit d8a74d1d95
1 changed files with 1 additions and 1 deletions

View File

@ -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; \
} \