diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-11-24 18:07:39 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-11-24 18:07:39 +0000 |
commit | 459b06610ca91122dd8ff6824982d6fa54e23d8b (patch) | |
tree | 18e12814429afb35df8eaa0ea3193fa8b1fde4d6 /libavfilter | |
parent | 6fd2b8bd0ac28fb6a0d75e705ff7626c132732cd (diff) | |
download | ffmpeg-459b06610ca91122dd8ff6824982d6fa54e23d8b.tar.gz |
0.123l: remove unused arguments in av_log(), fix warning.
Originally committed as revision 25820 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_crop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_crop.c b/libavfilter/vf_crop.c index 88356c6da3..0d10febc14 100644 --- a/libavfilter/vf_crop.c +++ b/libavfilter/vf_crop.c @@ -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) { |