summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhkuang <hkuang@google.com>2015-03-26 15:36:22 -0700
committerhkuang <hkuang@google.com>2015-03-26 15:36:22 -0700
commitffafcd6281d3f86bcf6f6216ace3b1061bfd9c75 (patch)
tree1012779a6bba7ac4bb2c26626b694a9c6fe8bab8
parentba13ff8501c53c0575e7e814c2c4320987d2d24c (diff)
downloadlibvpx-ffafcd6281d3f86bcf6f6216ace3b1061bfd9c75.tar
libvpx-ffafcd6281d3f86bcf6f6216ace3b1061bfd9c75.tar.gz
libvpx-ffafcd6281d3f86bcf6f6216ace3b1061bfd9c75.tar.bz2
libvpx-ffafcd6281d3f86bcf6f6216ace3b1061bfd9c75.zip
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
-rw-r--r--vpxdec.c3
1 files changed, 0 insertions, 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) {