]> granicus.if.org Git - libvpx/commitdiff
vpxdec: use the same output for --progress and --summary
authorJohn Koleszar <jkoleszar@google.com>
Thu, 21 Oct 2010 21:28:34 +0000 (17:28 -0400)
committerJohn Koleszar <jkoleszar@google.com>
Tue, 26 Oct 2010 02:22:40 +0000 (22:22 -0400)
Update the timing information in-place for the --progress
option.

Change-Id: I8efea57050db72963c0bc5c994425e7e692d1502

vpxdec.c

index 0de072e8bf120c3853bc8c475b2a6d4987f0114a..2d96b28b6320cbe4d04e180766dd65ea4fdf8c6a 100644 (file)
--- a/vpxdec.c
+++ b/vpxdec.c
@@ -577,6 +577,15 @@ fail:
     return 0;
 }
 
+
+void show_progress(int frame_in, int frame_out, unsigned long dx_time)
+{
+    fprintf(stderr, "%d decoded frames/%d showed frames in %lu us (%.2f fps)\r",
+            frame_in, frame_out, dx_time,
+            (float)frame_out * 1000000.0 / (float)dx_time);
+}
+
+
 int main(int argc, const char **argv_)
 {
     vpx_codec_ctx_t          decoder;
@@ -812,12 +821,12 @@ int main(int argc, const char **argv_)
 
         ++frame_in;
 
-        if (progress)
-            fprintf(stderr, "decoded frame %d.\n", frame_in);
-
         if ((img = vpx_codec_get_frame(&decoder, &iter)))
             ++frame_out;
 
+        if (progress)
+            show_progress(frame_in, frame_out, dx_time);
+
         if (!noblit)
         {
             if (img)
@@ -869,10 +878,10 @@ int main(int argc, const char **argv_)
             break;
     }
 
-    if (summary)
+    if (summary || progress)
     {
-        fprintf(stderr, "%d decoded frames/%d showed frames in %lu us (%.2f fps)\n",
-                frame_in, frame_out, dx_time, (float)frame_out * 1000000.0 / (float)dx_time);
+        show_progress(frame_in, frame_out, dx_time);
+        fprintf(stderr, "\n");
     }
 
 fail: