From: Yaowu Xu Date: Fri, 6 May 2016 21:21:06 +0000 (-0700) Subject: Make parameter types consistent X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ad841b7dac0faef4b18f5ce4891b43cd6495b3bc;p=libvpx Make parameter types consistent This fixes compiler warnings from MSVC. Change-Id: Iaac0e994869561371295578a893f766493ce0544 --- diff --git a/vp10/encoder/x86/highbd_fwd_txfm_sse4.c b/vp10/encoder/x86/highbd_fwd_txfm_sse4.c index 949816c65..d48610eec 100644 --- a/vp10/encoder/x86/highbd_fwd_txfm_sse4.c +++ b/vp10/encoder/x86/highbd_fwd_txfm_sse4.c @@ -205,8 +205,8 @@ static void fadst4x4_sse4_1(__m128i *in, int bit) { in[3] = _mm_unpackhi_epi64(v1, v3); } -void vp10_fwd_txfm2d_4x4_sse4_1(const int16_t *input, tran_low_t *coeff, - int input_stride, int tx_type, +void vp10_fwd_txfm2d_4x4_sse4_1(const int16_t *input, int32_t *coeff, + const int input_stride, int tx_type, const int bd) { __m128i in[4]; const TXFM_2D_CFG *cfg = NULL; @@ -917,8 +917,8 @@ static void fadst8x8_sse4_1(__m128i *in, __m128i *out, int bit) { out[15] = _mm_sub_epi32(kZero, u[1]); } -void vp10_fwd_txfm2d_8x8_sse4_1(const int16_t *input, tran_low_t *coeff, - int stride, int tx_type, int bd) { +void vp10_fwd_txfm2d_8x8_sse4_1(const int16_t *input, int32_t *coeff, + const int stride, int tx_type, const int bd) { __m128i in[16], out[16]; const TXFM_2D_CFG *cfg = NULL;