Remove redundant function definitions in vp9_dct_sse2.h

Change-Id: I283d364a4e65ca9bf6ff581da1d0b498433c5402
This commit is contained in:
Jingning Han 2015-07-23 14:55:05 -07:00
parent 252ec59821
commit 48de07d882
2 changed files with 1 additions and 11 deletions

View File

@ -12,8 +12,8 @@
#include <emmintrin.h> // SSE2 #include <emmintrin.h> // SSE2
#include "./vp9_rtcd.h" #include "./vp9_rtcd.h"
#include "./vpx_dsp_rtcd.h"
#include "vp9/common/vp9_idct.h" // for cospi constants #include "vp9/common/vp9_idct.h" // for cospi constants
#include "vp9/encoder/vp9_dct.h"
#include "vp9/encoder/x86/vp9_dct_sse2.h" #include "vp9/encoder/x86/vp9_dct_sse2.h"
#include "vpx_ports/mem.h" #include "vpx_ports/mem.h"

View File

@ -18,16 +18,6 @@ extern "C" {
#define pair_set_epi32(a, b) \ #define pair_set_epi32(a, b) \
_mm_set_epi32((int)(b), (int)(a), (int)(b), (int)(a)) _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) { static INLINE __m128i k_madd_epi32(__m128i a, __m128i b) {
__m128i buf0, buf1; __m128i buf0, buf1;
buf0 = _mm_mul_epu32(a, b); buf0 = _mm_mul_epu32(a, b);