Commit 459b0661 authored by Stefano Sabatini's avatar Stefano Sabatini

0.123l: remove unused arguments in av_log(), fix warning.

Originally committed as revision 25820 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6fd2b8bd
......@@ -201,7 +201,7 @@ static int config_input(AVFilterLink *link)
return AVERROR(EINVAL);
av_log(ctx, AV_LOG_INFO, "w:%d h:%d -> w:%d h:%d\n",
link->w, link->h, crop->w, crop->h, crop->x, crop->y);
link->w, link->h, crop->w, crop->h);
if (crop->w <= 0 || crop->h <= 0 ||
crop->w > link->w || crop->h > link->h) {
......
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