summaryrefslogtreecommitdiff
path: root/vpx_dsp/x86
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2017-08-17 15:37:38 -0700
committerJames Zern <jzern@google.com>2017-08-17 15:37:38 -0700
commitbb15fd51be0c699d9c2ef088d807762d25311d6e (patch)
tree77947433b7a0761358ed42dd25c560e9316cf041 /vpx_dsp/x86
parente038d1610ee5991868e2b4155a69d6c1de3fa648 (diff)
downloadlibvpx-bb15fd51be0c699d9c2ef088d807762d25311d6e.tar
libvpx-bb15fd51be0c699d9c2ef088d807762d25311d6e.tar.gz
libvpx-bb15fd51be0c699d9c2ef088d807762d25311d6e.tar.bz2
libvpx-bb15fd51be0c699d9c2ef088d807762d25311d6e.zip
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
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);
}