ref: 48de07d882605d865cca2c8ad091f02e74c2f145
parent: 252ec59821e88684fde8c3955115f4ec29d9a0fd
author: Jingning Han <[email protected]>
date: Thu Jul 23 10:55:05 EDT 2015
Remove redundant function definitions in vp9_dct_sse2.h Change-Id: I283d364a4e65ca9bf6ff581da1d0b498433c5402
--- a/vp9/encoder/x86/vp9_dct_sse2.c
+++ b/vp9/encoder/x86/vp9_dct_sse2.c
@@ -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"
--- a/vp9/encoder/x86/vp9_dct_sse2.h
+++ b/vp9/encoder/x86/vp9_dct_sse2.h
@@ -18,16 +18,6 @@
#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);