]> granicus.if.org Git - libvpx/commitdiff
Fix the issue that --limit is not working in --frame-parallel mode.
authorhkuang <hkuang@google.com>
Thu, 26 Mar 2015 22:36:22 +0000 (15:36 -0700)
committerhkuang <hkuang@google.com>
Thu, 26 Mar 2015 22:36:22 +0000 (15:36 -0700)
The reason is due to early break out before outputting all the frames inside
decoder.

Change-Id: I4a138fba08d12935c39bd7602c95f8c18b474e29

vpxdec.c

index 04035501980c6769efc250c2acf6b5204e9ad190..8c938df8de6157cc068fd908fd2fca9593ad4acd 100644 (file)
--- a/vpxdec.c
+++ b/vpxdec.c
@@ -1080,9 +1080,6 @@ int main_loop(int argc, const char **argv_) {
         }
       }
     }
-
-    if (stop_after && frame_in >= stop_after)
-      break;
   }
 
   if (summary || progress) {