[FFmpeg-cvslog] qtrle: use AV_LOG_ERROR in an error message.
Anton Khirnov
git at videolan.org
Sun Feb 24 14:09:57 CET 2013
ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Thu Feb 14 18:00:39 2013 +0100| [d8a74d1d95a3ac37d3f9807499630277ad983c51] | committer: Anton Khirnov
qtrle: use AV_LOG_ERROR in an error message.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d8a74d1d95a3ac37d3f9807499630277ad983c51
---
libavcodec/qtrle.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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; \
} \
More information about the ffmpeg-cvslog
mailing list