shithub: libvpx

Download patch

ref: c12398fe812e75173ff5df43bb283a7d80d88b75
parent: 7987f35391c33c87aae1eb1e1148c41c91303ace
parent: 6ed4c253a97e7b2950ad42c82ee4d50299fcc1f9
author: James Zern <jzern@google.com>
date: Thu Mar 8 16:13:09 EST 2018

Merge "vpx_scale_test: add w/h output to alloc failure"

--- a/test/vpx_scale_test.h
+++ b/test/vpx_scale_test.h
@@ -33,7 +33,8 @@
                   const int height) {
     memset(img, 0, sizeof(*img));
     ASSERT_EQ(
-        0, vp8_yv12_alloc_frame_buffer(img, width, height, VP8BORDERINPIXELS));
+        0, vp8_yv12_alloc_frame_buffer(img, width, height, VP8BORDERINPIXELS))
+        << "for width: " << width << " height: " << height;
     memset(img->buffer_alloc, kBufFiller, img->frame_size);
   }