You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
qtrle: use AV_LOG_ERROR in an error message.
This commit is contained in:
@@ -48,7 +48,7 @@ typedef struct QtrleContext {
|
|||||||
|
|
||||||
#define CHECK_PIXEL_PTR(n) \
|
#define CHECK_PIXEL_PTR(n) \
|
||||||
if ((pixel_ptr + n > pixel_limit) || (pixel_ptr + n < 0)) { \
|
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); \
|
pixel_ptr + n, pixel_limit); \
|
||||||
return; \
|
return; \
|
||||||
} \
|
} \
|
||||||
|
Reference in New Issue
Block a user