Commit 47a11ff4 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

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

parent 9f3dd530
...@@ -322,7 +322,7 @@ static int fic_decode_frame(AVCodecContext *avctx, void *data, ...@@ -322,7 +322,7 @@ static int fic_decode_frame(AVCodecContext *avctx, void *data,
cur_x = AV_RL16(src + 33); cur_x = AV_RL16(src + 33);
cur_y = AV_RL16(src + 35); cur_y = AV_RL16(src + 35);
if (!skip_cursor && (cur_x > avctx->width || cur_y > avctx->height)) { 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", "Invalid cursor position: (%d,%d). Skipping cursor.\n",
cur_x, cur_y); cur_x, cur_y);
skip_cursor = 1; skip_cursor = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment