[FFmpeg-cvslog] avconv: always print stats with AV_LOG_INFO

Anton Khirnov git at videolan.org
Mon Oct 10 03:59:51 CEST 2011


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Sun Oct  9 16:32:54 2011 +0200| [f5646a325b94a077bf9849d5f6a4b3d4e69ed37b] | committer: Anton Khirnov

avconv: always print stats with AV_LOG_INFO

It's now possible to disable printing stats during encoding with
-nostats, so there's no reason to print them differently depending on
whether it's last report or not.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f5646a325b94a077bf9849d5f6a4b3d4e69ed37b
---

 avconv.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/avconv.c b/avconv.c
index f1d23ed..9b69e1d 100644
--- a/avconv.c
+++ b/avconv.c
@@ -1407,7 +1407,7 @@ static void print_report(OutputFile *output_files,
         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " dup=%d drop=%d",
                 nb_frames_dup, nb_frames_drop);
 
-    av_log(NULL, is_last_report ? AV_LOG_WARNING : AV_LOG_INFO, "%s    \r", buf);
+    av_log(NULL, AV_LOG_INFO, "%s    \r", buf);
 
     fflush(stderr);
 



More information about the ffmpeg-cvslog mailing list