diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-05-01 15:27:51 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-05-01 15:28:59 +0200 |
commit | 47a11ff4574ba0d40736a05dd80f038e473ce36e (patch) | |
tree | cabdea2b7c0fa08d7c043955b2af0247db7ee0b2 /libavcodec/fic.c | |
parent | 9f3dd530500e898b5ee4106b448562602371ae71 (diff) | |
download | ffmpeg-47a11ff4574ba0d40736a05dd80f038e473ce36e.tar.gz |
lavc/fic: Be less verbose for invisible cursor outside of video.
Diffstat (limited to 'libavcodec/fic.c')
-rw-r--r-- | libavcodec/fic.c | 2 |
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; |