summaryrefslogtreecommitdiff
path: root/libavcodec/fic.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2016-05-01 15:27:51 +0200
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2016-05-01 15:28:59 +0200
commit47a11ff4574ba0d40736a05dd80f038e473ce36e (patch)
treecabdea2b7c0fa08d7c043955b2af0247db7ee0b2 /libavcodec/fic.c
parent9f3dd530500e898b5ee4106b448562602371ae71 (diff)
lavc/fic: Be less verbose for invisible cursor outside of video.
Diffstat (limited to 'libavcodec/fic.c')
-rw-r--r--libavcodec/fic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/fic.c b/libavcodec/fic.c
index a2f878f201..6a2b5d6380 100644
--- a/libavcodec/fic.c
+++ b/libavcodec/fic.c
@@ -322,7 +322,7 @@ static int fic_decode_frame(AVCodecContext *avctx, void *data,
cur_x = AV_RL16(src + 33);
cur_y = AV_RL16(src + 35);
if (!skip_cursor && (cur_x > avctx->width || cur_y > avctx->height)) {
- av_log(avctx, AV_LOG_WARNING,
+ av_log(avctx, AV_LOG_DEBUG,
"Invalid cursor position: (%d,%d). Skipping cursor.\n",
cur_x, cur_y);
skip_cursor = 1;