From 94972ca7ea2a93806d0f902dd222ec164e81997d Mon Sep 17 00:00:00 2001 From: James Zern Date: Mon, 20 Dec 2021 19:56:01 -0800 Subject: vpx_int_pro_row: normalize declaration w/aom this is a followup to: 7fbcee49d quiet -Warray-parameter warnings and conforms to aom in: 06e13e817 quiet -Warray-parameter warnings the sad functions are more varied in libvpx and will require a separate pass Change-Id: I765fd6704df615e836ba0b184ff8266ce926c394 --- vpx_dsp/x86/avg_intrin_sse2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vpx_dsp/x86') diff --git a/vpx_dsp/x86/avg_intrin_sse2.c b/vpx_dsp/x86/avg_intrin_sse2.c index 3cba258f6..9da2f34c9 100644 --- a/vpx_dsp/x86/avg_intrin_sse2.c +++ b/vpx_dsp/x86/avg_intrin_sse2.c @@ -464,7 +464,7 @@ int vpx_satd_sse2(const tran_low_t *coeff, int length) { return _mm_cvtsi128_si32(accum); } -void vpx_int_pro_row_sse2(int16_t *hbuf, const uint8_t *ref, +void vpx_int_pro_row_sse2(int16_t hbuf[16], const uint8_t *ref, const int ref_stride, const int height) { int idx; __m128i zero = _mm_setzero_si128(); -- cgit v1.2.3