diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-06-25 06:31:38 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-06-26 19:08:13 +0200 |
commit | 1a49a169eb74a978eb7b2a4f2caf3520b7741ee5 (patch) | |
tree | 0551783202e47b75d0afe2cac6353a80a7b42e75 /libavfilter/avfilter.c | |
parent | ce0a975689068f2fe70f43797ca6e8b4f6b52a4c (diff) | |
download | ffmpeg-1a49a169eb74a978eb7b2a4f2caf3520b7741ee5.tar.gz |
lavfi: make filters less verbose.
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r-- | libavfilter/avfilter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index b550169468..dc828153f9 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -101,7 +101,7 @@ int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt, int ret; unsigned dstpad_idx = link->dstpad - link->dst->input_pads; - av_log(link->dst, AV_LOG_INFO, "auto-inserting filter '%s' " + av_log(link->dst, AV_LOG_VERBOSE, "auto-inserting filter '%s' " "between the filter '%s' and the filter '%s'\n", filt->name, link->src->name, link->dst->name); |