[FFmpeg-cvslog] lavc/fic: Be less verbose for invisible cursor outside of video.

Carl Eugen Hoyos git at videolan.org
Sun May 1 15:29:30 CEST 2016


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Sun May  1 15:27:51 2016 +0200| [47a11ff4574ba0d40736a05dd80f038e473ce36e] | committer: Carl Eugen Hoyos

lavc/fic: Be less verbose for invisible cursor outside of video.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=47a11ff4574ba0d40736a05dd80f038e473ce36e
---

 libavcodec/fic.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/fic.c b/libavcodec/fic.c
index a2f878f..6a2b5d6 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;



More information about the ffmpeg-cvslog mailing list