]> granicus.if.org Git - libx264/commitdiff
Make x264 progress indicator more concise
authorFiona Glaser <fiona@x264.com>
Fri, 26 Sep 2008 16:19:56 +0000 (09:19 -0700)
committerFiona Glaser <fiona@x264.com>
Fri, 26 Sep 2008 16:19:56 +0000 (09:19 -0700)
Now the % indicator should be readable on the header of a minimized window on Windows systems.

x264.c

diff --git a/x264.c b/x264.c
index a561055484d19bd2e0f1f054018b4f6d7542c8f3..0daf02baf37d038a4dc29097742a5b7645dd3d92 100644 (file)
--- a/x264.c
+++ b/x264.c
@@ -847,15 +847,15 @@ static int  Encode( x264_param_t *param, cli_opt_t *opt )
             if( i_frame_total )
             {
                 int eta = i_elapsed * (i_frame_total - i_frame) / ((int64_t)i_frame * 1000000);
-                sprintf( buf, "x264 - encoded frames: %d/%d (%.1f%%), %.2f fps, %.2f kb/s, eta %d:%02d:%02d",
-                         i_frame, i_frame_total, 100. * i_frame / i_frame_total, fps, bitrate,
+                sprintf( buf, "x264 [%.1f%%] %d/%d frames, %.2f fps, %.2f kb/s, eta %d:%02d:%02d",
+                         100. * i_frame / i_frame_total, i_frame, i_frame_total, fps, bitrate,
                          eta/3600, (eta/60)%60, eta%60 );
             }
             else
             {
-                sprintf( buf, "x264 - encoded frames: %d, %.2f fps, %.2f kb/s", i_frame, fps, bitrate );
+                sprintf( buf, "x264 %d frames: , %.2f fps, %.2f kb/s", i_frame, fps, bitrate );
             }
-            fprintf( stderr, "%s  \r", buf+7 );
+            fprintf( stderr, "%s  \r", buf+5 );
             SetConsoleTitle( buf );
             fflush( stderr ); // needed in windows
         }