Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-02-14 21:00:39 +0400
committerAnton Khirnov <anton@khirnov.net>2013-02-23 16:06:12 +0400
commitd8a74d1d95a3ac37d3f9807499630277ad983c51 (patch)
tree9294bb92f1eb933ed19cf0edaece6a659f74a60d /libavcodec
parent7b4f91155bd4ef5a8d4e9af65c48b42bfa5b52c6 (diff)
qtrle: use AV_LOG_ERROR in an error message.
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/qtrle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/qtrle.c b/libavcodec/qtrle.c
index eca96e2d5f..cc31592f01 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; \
} \