From ffafcd6281d3f86bcf6f6216ace3b1061bfd9c75 Mon Sep 17 00:00:00 2001 From: hkuang Date: Thu, 26 Mar 2015 15:36:22 -0700 Subject: Fix the issue that --limit is not working in --frame-parallel mode. The reason is due to early break out before outputting all the frames inside decoder. Change-Id: I4a138fba08d12935c39bd7602c95f8c18b474e29 --- vpxdec.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/vpxdec.c b/vpxdec.c index 040355019..8c938df8d 100644 --- 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) { -- cgit v1.2.3