Remove redundant function definitions in vp9_dct_sse2.h
authorJingning Han <jingning@google.com>
Thu, 23 Jul 2015 21:55:05 +0000 (14:55 -0700)
committerJingning Han <jingning@google.com>
Fri, 24 Jul 2015 21:12:06 +0000 (21:12 +0000)
Change-Id: I283d364a4e65ca9bf6ff581da1d0b498433c5402

vp9/encoder/x86/vp9_dct_sse2.c
vp9/encoder/x86/vp9_dct_sse2.h

index c82f154..04d2f96 100644 (file)
@@ -12,8 +12,8 @@
 #include <emmintrin.h>  // 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"
 
index b99db92..e2d8666 100644 (file)
@@ -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);