mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-07 13:08:06 +00:00
qtrle: use AV_LOG_ERROR in an error message.
This commit is contained in:
parent
7b4f91155b
commit
d8a74d1d95
@ -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…
Reference in New Issue
Block a user