shithub: libvpx

Download patch

ref: 6ed4c253a97e7b2950ad42c82ee4d50299fcc1f9
parent: 0bee6de3321466beb2ffa18e0fa9c639c8c2dd56
author: James Zern <jzern@google.com>
date: Wed Mar 7 18:07:51 EST 2018

vpx_scale_test: add w/h output to alloc failure

Change-Id: Ib5df91d9fcd7fe973a2f7d8e73a204259beddc07

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