1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-24 13:56:33 +02:00

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

This commit is contained in:
Carl Eugen Hoyos 2016-05-01 15:27:51 +02:00
parent 9f3dd53050
commit 47a11ff457

View File

@ -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;