Commit fd825075 authored by michael's avatar michael

Include dup/drop info if any frames where duplicated or droped

instead of when verbose>1.
From ffmbc0.3


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20865 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent db833747
......@@ -1241,7 +1241,7 @@ static void print_report(AVFormatContext **output_files,
"size=%8.0fkB time=%0.2f bitrate=%6.1fkbits/s",
(double)total_size / 1024, ti1, bitrate);
if (verbose > 1)
if (nb_frames_dup || nb_frames_drop)
snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " dup=%d drop=%d",
nb_frames_dup, nb_frames_drop);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment