From c59e73d2c87314f87449b64488001e3153471f64 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 5 Apr 2012 07:04:10 +0200 Subject: [PATCH] vf_idet: change individual per frame statistics to debug log level. Signed-off-by: Michael Niedermayer --- libavfilter/vf_idet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_idet.c b/libavfilter/vf_idet.c index 26a45cea11..9cf01e6a04 100644 --- a/libavfilter/vf_idet.c +++ b/libavfilter/vf_idet.c @@ -142,7 +142,7 @@ static void filter(AVFilterContext *ctx) idet->prestat [ type] ++; idet->poststat[idet->last_type] ++; - av_log(ctx, AV_LOG_INFO, "Single frame:%s, Multi frame:%s\n", type2str(type), type2str(idet->last_type)); + av_log(ctx, AV_LOG_DEBUG, "Single frame:%s, Multi frame:%s\n", type2str(type), type2str(idet->last_type)); } static void start_frame(AVFilterLink *link, AVFilterBufferRef *picref)