From 48de07d882605d865cca2c8ad091f02e74c2f145 Mon Sep 17 00:00:00 2001 From: Jingning Han Date: Thu, 23 Jul 2015 14:55:05 -0700 Subject: [PATCH] Remove redundant function definitions in vp9_dct_sse2.h Change-Id: I283d364a4e65ca9bf6ff581da1d0b498433c5402 --- vp9/encoder/x86/vp9_dct_sse2.c | 2 +- vp9/encoder/x86/vp9_dct_sse2.h | 10 ---------- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/vp9/encoder/x86/vp9_dct_sse2.c b/vp9/encoder/x86/vp9_dct_sse2.c index c82f15465..04d2f96ff 100644 --- a/vp9/encoder/x86/vp9_dct_sse2.c +++ b/vp9/encoder/x86/vp9_dct_sse2.c @@ -12,8 +12,8 @@ #include // SSE2 #include "./vp9_rtcd.h" +#include "./vpx_dsp_rtcd.h" #include "vp9/common/vp9_idct.h" // for cospi constants -#include "vp9/encoder/vp9_dct.h" #include "vp9/encoder/x86/vp9_dct_sse2.h" #include "vpx_ports/mem.h" diff --git a/vp9/encoder/x86/vp9_dct_sse2.h b/vp9/encoder/x86/vp9_dct_sse2.h index b99db923e..e2d8666fd 100644 --- a/vp9/encoder/x86/vp9_dct_sse2.h +++ b/vp9/encoder/x86/vp9_dct_sse2.h @@ -18,16 +18,6 @@ extern "C" { #define pair_set_epi32(a, b) \ _mm_set_epi32((int)(b), (int)(a), (int)(b), (int)(a)) -void vp9_fdct4x4_sse2(const int16_t *input, tran_low_t *output, int stride); -void vp9_fdct8x8_sse2(const int16_t *input, tran_low_t *output, int stride); -void vp9_fdct16x16_sse2(const int16_t *input, tran_low_t *output, int stride); -void vp9_highbd_fdct4x4_sse2(const int16_t *input, tran_low_t *output, - int stride); -void vp9_highbd_fdct8x8_sse2(const int16_t *input, tran_low_t *output, - int stride); -void vp9_highbd_fdct16x16_sse2(const int16_t *input, tran_low_t *output, - int stride); - static INLINE __m128i k_madd_epi32(__m128i a, __m128i b) { __m128i buf0, buf1; buf0 = _mm_mul_epu32(a, b);