summaryrefslogtreecommitdiff
path: root/vpx_dsp/x86
diff options
context:
space:
mode:
authorJohann Koenig <johannkoenig@google.com>2018-12-21 22:02:49 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-12-21 22:02:49 +0000
commit313ca263fab12963d06a84d6d1c31092369d8742 (patch)
treef1e1b24c26f02ff88ae8e7ef1f765fc9c5804d3b /vpx_dsp/x86
parent9b45ae55f085fdd14b148bc562cf1ec14f38648d (diff)
parent7f90729f87c180ccd0fd6f367a1551da78338812 (diff)
downloadlibvpx-313ca263fab12963d06a84d6d1c31092369d8742.tar
libvpx-313ca263fab12963d06a84d6d1c31092369d8742.tar.gz
libvpx-313ca263fab12963d06a84d6d1c31092369d8742.tar.bz2
libvpx-313ca263fab12963d06a84d6d1c31092369d8742.zip
Merge "fwd_dct32x32 sse2: resolve missing declarations"
Diffstat (limited to 'vpx_dsp/x86')
-rw-r--r--vpx_dsp/x86/fwd_dct32x32_impl_sse2.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/vpx_dsp/x86/fwd_dct32x32_impl_sse2.h b/vpx_dsp/x86/fwd_dct32x32_impl_sse2.h
index 2dc1462b0..ac1246faa 100644
--- a/vpx_dsp/x86/fwd_dct32x32_impl_sse2.h
+++ b/vpx_dsp/x86/fwd_dct32x32_impl_sse2.h
@@ -21,7 +21,7 @@
#define ADD_EPI16 _mm_adds_epi16
#define SUB_EPI16 _mm_subs_epi16
#if FDCT32x32_HIGH_PRECISION
-void vpx_fdct32x32_rows_c(const int16_t *intermediate, tran_low_t *out) {
+static void vpx_fdct32x32_rows_c(const int16_t *intermediate, tran_low_t *out) {
int i, j;
for (i = 0; i < 32; ++i) {
tran_high_t temp_in[32], temp_out[32];
@@ -35,7 +35,8 @@ void vpx_fdct32x32_rows_c(const int16_t *intermediate, tran_low_t *out) {
#define HIGH_FDCT32x32_2D_C vpx_highbd_fdct32x32_c
#define HIGH_FDCT32x32_2D_ROWS_C vpx_fdct32x32_rows_c
#else
-void vpx_fdct32x32_rd_rows_c(const int16_t *intermediate, tran_low_t *out) {
+static void vpx_fdct32x32_rd_rows_c(const int16_t *intermediate,
+ tran_low_t *out) {
int i, j;
for (i = 0; i < 32; ++i) {
tran_high_t temp_in[32], temp_out[32];