summaryrefslogtreecommitdiff
path: root/libavfilter/vf_crop.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/vf_crop.c')
-rw-r--r--libavfilter/vf_crop.c2
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) {