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

Originally committed as revision 25820 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefano Sabatini 2010-11-24 18:07:39 +00:00
parent 6fd2b8bd0a
commit 459b06610c
1 changed files with 1 additions and 1 deletions

View File

@ -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) {