x86: normalize type with _mm_cvtsi128_si32
authorJames Zern <jzern@google.com>
Wed, 27 Jul 2022 22:22:37 +0000 (15:22 -0700)
committerJames Zern <jzern@google.com>
Wed, 27 Jul 2022 23:59:21 +0000 (16:59 -0700)
commit4667992d8ba51d60045d6fed705635a6455eb4f8
treee7b269b6f46dcb936cfe1c3d832bb96a08255e0d
parente533d989ea93ee6cd980cc07e077475733694687
x86: normalize type with _mm_cvtsi128_si32

prefer int in most cases

w/clang -fsanitize=integer fixes warnings of the form:
implicit conversion from type 'int' of value -809931979 (32-bit, signed)
to type 'uint32_t' (aka 'unsigned int') changed the value to 3485035317
(32-bit, unsigned)

Bug: b/229626362
Change-Id: I0c6604efc188f2660c531eddfc7aa10060637813
vp8/encoder/x86/denoising_sse2.c
vpx_dsp/x86/avg_intrin_sse2.c
vpx_dsp/x86/convolve_avx2.h
vpx_dsp/x86/mem_sse2.h
vpx_dsp/x86/sad_avx2.c
vpx_dsp/x86/variance_sse2.c
vpx_dsp/x86/vpx_subpixel_4t_intrin_sse2.c
vpx_dsp/x86/vpx_subpixel_8t_intrin_avx2.c
vpx_dsp/x86/vpx_subpixel_8t_intrin_ssse3.c