OSDN Git Service

0.123l: remove unused arguments in av_log(), fix warning.
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Wed, 24 Nov 2010 18:07:39 +0000 (18:07 +0000)
committerStefano Sabatini <stefano.sabatini-lala@poste.it>
Wed, 24 Nov 2010 18:07:39 +0000 (18:07 +0000)
Originally committed as revision 25820 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavfilter/vf_crop.c

index 88356c6..0d10feb 100644 (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) {