summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJerome Jiang <jianj@google.com>2018-05-10 14:30:54 -0700
committerJerome Jiang <jianj@google.com>2018-05-10 14:30:54 -0700
commitf11630d9f704bf910609a433037dec97dda3c3bd (patch)
treeaf4a7dcf01c2146638cece1cac7b84e4737edf24
parent5f3e99166c84c76075f0faf64fb12746c856d8cb (diff)
downloadlibvpx-f11630d9f704bf910609a433037dec97dda3c3bd.tar
libvpx-f11630d9f704bf910609a433037dec97dda3c3bd.tar.gz
libvpx-f11630d9f704bf910609a433037dec97dda3c3bd.tar.bz2
libvpx-f11630d9f704bf910609a433037dec97dda3c3bd.zip
Make upper limit of frame size in ivf reader consistent.
Change the limit of frame size in ivf reader used by test to make it consistent with ivf reader used in vpxdec. Change-Id: I19ab05adf51eca65322e609efdf4d83ad66af847
-rw-r--r--test/ivf_video_source.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ivf_video_source.h b/test/ivf_video_source.h
index 5862d2649..4b5d55469 100644
--- a/test/ivf_video_source.h
+++ b/test/ivf_video_source.h
@@ -16,7 +16,7 @@
#include "test/video_source.h"
namespace libvpx_test {
-const unsigned int kCodeBufferSize = 256 * 1024;
+const unsigned int kCodeBufferSize = 256 * 1024 * 1024;
const unsigned int kIvfFileHdrSize = 32;
const unsigned int kIvfFrameHdrSize = 12;