From: hkuang Date: Thu, 26 Mar 2015 22:36:22 +0000 (-0700) Subject: Fix the issue that --limit is not working in --frame-parallel mode. X-Git-Tag: v1.5.0~825^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ffafcd6281d3f86bcf6f6216ace3b1061bfd9c75;p=libvpx 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 --- 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) {