shithub: libvpx

Download patch

ref: f11630d9f704bf910609a433037dec97dda3c3bd
parent: 5f3e99166c84c76075f0faf64fb12746c856d8cb
author: Jerome Jiang <jianj@google.com>
date: Thu May 10 10:30:54 EDT 2018

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

--- 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;