Module: libav Branch: master Commit: d8a74d1d95a3ac37d3f9807499630277ad983c51
Author: Anton Khirnov <[email protected]> Committer: Anton Khirnov <[email protected]> Date: Thu Feb 14 18:00:39 2013 +0100 qtrle: use AV_LOG_ERROR in an error message. --- libavcodec/qtrle.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libavcodec/qtrle.c b/libavcodec/qtrle.c index eca96e2..cc31592 100644 --- a/libavcodec/qtrle.c +++ b/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; \ } \ _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
