ref: bb15fd51be0c699d9c2ef088d807762d25311d6e
parent: e038d1610ee5991868e2b4155a69d6c1de3fa648
author: James Zern <jzern@google.com>
date: Thu Aug 17 11:37:38 EDT 2017
highbd_idct32x32*,idct32_34_4x32_quarter_1_2: fix typo 135 -> 34 fixes unused function warnings for highbd_idct32_34_4x32_quarter_[12] Change-Id: I4f50ff6ea514200af93dd59ff94c7f9717409682
--- a/vpx_dsp/x86/highbd_idct32x32_add_sse2.c
+++ b/vpx_dsp/x86/highbd_idct32x32_add_sse2.c
@@ -648,8 +648,8 @@
static INLINE void highbd_idct32_34_4x32_quarter_1_2(
const __m128i *const in /*in[32]*/, __m128i *const out /*out[32]*/) {
__m128i temp[16];
- highbd_idct32_135_4x32_quarter_1(in, temp);
- highbd_idct32_135_4x32_quarter_2(in, temp);
+ highbd_idct32_34_4x32_quarter_1(in, temp);
+ highbd_idct32_34_4x32_quarter_2(in, temp);
// stage 7
highbd_add_sub_butterfly(temp, out, 16);
}
--- a/vpx_dsp/x86/highbd_idct32x32_add_sse4.c
+++ b/vpx_dsp/x86/highbd_idct32x32_add_sse4.c
@@ -644,8 +644,8 @@
static INLINE void highbd_idct32_34_4x32_quarter_1_2(
const __m128i *const in /*in[32]*/, __m128i *const out /*out[32]*/) {
__m128i temp[16];
- highbd_idct32_135_4x32_quarter_1(in, temp);
- highbd_idct32_135_4x32_quarter_2(in, temp);
+ highbd_idct32_34_4x32_quarter_1(in, temp);
+ highbd_idct32_34_4x32_quarter_2(in, temp);
// stage 7
highbd_add_sub_butterfly(temp, out, 16);
}