shithub: libvpx

Download patch

ref: a367c9766d9c459670fc7cabefc5d03946b55953
parent: 70554a21f1efe5f16a9ee18b1ce21a49de08b212
parent: eabb793f3b80d564a90e4fc58b6f6ac4fa2e91cb
author: Johann <johannkoenig@google.com>
date: Tue Feb 3 08:52:14 EST 2015

Merge "Use correct buffer size in vp8 subpixel variance"

--- a/vp8/common/arm/neon/vp8_subpixelvariance_neon.c
+++ b/vp8/common/arm/neon/vp8_subpixelvariance_neon.c
@@ -1003,7 +1003,7 @@
         const unsigned char *dst,
         int dst_stride,
         unsigned int *sse) {
-  DECLARE_ALIGNED_ARRAY(kAlign16, uint8_t, temp2, kHeight8 * kWidth8);
+  DECLARE_ALIGNED_ARRAY(kAlign16, uint8_t, temp2, kHeight8PlusOne * kWidth8);
   DECLARE_ALIGNED_ARRAY(kAlign16, uint8_t, fdata3, kHeight8PlusOne * kWidth8);
   if (xoffset == 0) {
     var_filter_block2d_bil_w8(src, temp2, src_stride, kWidth8, kHeight8,
@@ -1021,4 +1021,3 @@
   }
   return variance8x8_neon(temp2, kWidth8, dst, dst_stride, sse);
 }
-
--