summaryrefslogtreecommitdiff
path: root/libavfilter/vf_crop.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-06-25 06:31:38 +0200
committerAnton Khirnov <anton@khirnov.net>2012-06-26 19:08:13 +0200
commit1a49a169eb74a978eb7b2a4f2caf3520b7741ee5 (patch)
tree0551783202e47b75d0afe2cac6353a80a7b42e75 /libavfilter/vf_crop.c
parentce0a975689068f2fe70f43797ca6e8b4f6b52a4c (diff)
lavfi: make filters less verbose.
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 cf9a0a3b8d..6d124c19d3 100644
--- a/libavfilter/vf_crop.c
+++ b/libavfilter/vf_crop.c
@@ -207,7 +207,7 @@ static int config_input(AVFilterLink *link)
NULL, NULL, NULL, NULL, 0, ctx)) < 0)
return AVERROR(EINVAL);
- av_log(ctx, AV_LOG_INFO, "w:%d h:%d -> w:%d h:%d\n",
+ av_log(ctx, AV_LOG_VERBOSE, "w:%d h:%d -> w:%d h:%d\n",
link->w, link->h, crop->w, crop->h);
if (crop->w <= 0 || crop->h <= 0 ||