Commit 854148b8 authored by benoit's avatar benoit

Print timestamp with increased precision.

Patch by David Bolt


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13217 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 42fe4773
...@@ -1066,7 +1066,7 @@ static void print_report(AVFormatContext **output_files, ...@@ -1066,7 +1066,7 @@ static void print_report(AVFormatContext **output_files,
bitrate = (double)(total_size * 8) / ti1 / 1000.0; bitrate = (double)(total_size * 8) / ti1 / 1000.0;
snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
"size=%8.0fkB time=%0.1f bitrate=%6.1fkbits/s", "size=%8.0fkB time=%0.2f bitrate=%6.1fkbits/s",
(double)total_size / 1024, ti1, bitrate); (double)total_size / 1024, ti1, bitrate);
if (verbose > 1) if (verbose > 1)
......
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