summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorDavid Bolt <>2008-05-21 17:44:51 +0000
committerBenoit Fouet <benoit.fouet@free.fr>2008-05-21 17:44:51 +0000
commit475f4d8d4bb1578c75e9ede5f3da8e2816459c10 (patch)
tree721d4f7191d26e901e2577b3c61806f8ef798291 /ffmpeg.c
parent3ceac114ee0df2832db78644781397aceda68d5e (diff)
Print timestamp with increased precision.
Patch by David Bolt Originally committed as revision 13217 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 8d77742df1..4944dd6267 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -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)