summaryrefslogtreecommitdiff
path: root/vpx_dsp/x86
diff options
context:
space:
mode:
Diffstat (limited to 'vpx_dsp/x86')
-rw-r--r--vpx_dsp/x86/highbd_idct32x32_add_sse2.c4
-rw-r--r--vpx_dsp/x86/highbd_idct32x32_add_sse4.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/vpx_dsp/x86/highbd_idct32x32_add_sse2.c b/vpx_dsp/x86/highbd_idct32x32_add_sse2.c
index ddf7bc1c6..69ba02e7d 100644
--- 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_2(const __m128i *in /*in[32]*/,
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);
}
diff --git a/vpx_dsp/x86/highbd_idct32x32_add_sse4.c b/vpx_dsp/x86/highbd_idct32x32_add_sse4.c
index a75473bae..ed6a11f10 100644
--- 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_2(const __m128i *in /*in[32]*/,
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);
}