Skip to content
Snippets Groups Projects
Commit 459b0661 authored by Stefano Sabatini's avatar Stefano Sabatini
Browse files

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

Originally committed as revision 25820 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6fd2b8bd
No related branches found
No related tags found
No related merge requests found
......@@ -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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment