diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-04-05 07:04:10 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-04-05 09:11:15 +0200 |
commit | c59e73d2c87314f87449b64488001e3153471f64 (patch) | |
tree | 8f0cc0d109a648697bcaae19e8c82e4c7a9fe2b8 | |
parent | 4d4df310f2dc5f1fc7deaac75a236b6e01c1697c (diff) | |
download | ffmpeg-c59e73d2c87314f87449b64488001e3153471f64.tar.gz |
vf_idet: change individual per frame statistics to debug log level.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/vf_idet.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |