diff options
author | David Bolt <> | 2008-05-21 17:44:51 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2008-05-21 17:44:51 +0000 |
commit | 475f4d8d4bb1578c75e9ede5f3da8e2816459c10 (patch) | |
tree | 721d4f7191d26e901e2577b3c61806f8ef798291 | |
parent | 3ceac114ee0df2832db78644781397aceda68d5e (diff) | |
download | ffmpeg-475f4d8d4bb1578c75e9ede5f3da8e2816459c10.tar.gz |
Print timestamp with increased precision.
Patch by David Bolt
Originally committed as revision 13217 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1066,7 +1066,7 @@ static void print_report(AVFormatContext **output_files, bitrate = (double)(total_size * 8) / ti1 / 1000.0; 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); if (verbose > 1) |