Просмотр исходного кода

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.
Anton Khirnov 13 лет назад
Родитель
Сommit
f5646a325b
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      avconv.c

+ 1 - 1
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",
         snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " dup=%d drop=%d",
                 nb_frames_dup, nb_frames_drop);
                 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);
     fflush(stderr);