]> granicus.if.org Git - libvpx/commitdiff
VPX: Call vpx_hadamard_16x16_c() in vpx_hadamard_32x32_c()
authorScott LaVarnway <slavarnway@google.com>
Fri, 20 Jul 2018 16:17:13 +0000 (09:17 -0700)
committerScott LaVarnway <slavarnway@google.com>
Fri, 20 Jul 2018 16:17:13 +0000 (09:17 -0700)
instead of vpx_hadamard_16x16().

Change-Id: Ie16aacad39d7f429e282dd4c93e57c07000d0f29

vpx_dsp/avg.c

index 0936e91b3e8b307eeb246e4c25005b3024f15e9d..2b687eed692b81b2ce8309cdbd050ef35f77b19c 100644 (file)
@@ -130,7 +130,7 @@ void vpx_hadamard_32x32_c(const int16_t *src_diff, ptrdiff_t src_stride,
     // src_diff: 9 bit, dynamic range [-255, 255]
     const int16_t *src_ptr =
         src_diff + (idx >> 1) * 16 * src_stride + (idx & 0x01) * 16;
-    vpx_hadamard_16x16(src_ptr, src_stride, coeff + idx * 256);
+    vpx_hadamard_16x16_c(src_ptr, src_stride, coeff + idx * 256);
   }
 
   // coeff: 15 bit, dynamic range [-16320, 16320]