aboutsummaryrefslogtreecommitdiff
path: root/vpx_dsp/x86/highbd_inv_txfm_sse2.h
diff options
context:
space:
mode:
Diffstat (limited to 'vpx_dsp/x86/highbd_inv_txfm_sse2.h')
-rw-r--r--vpx_dsp/x86/highbd_inv_txfm_sse2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vpx_dsp/x86/highbd_inv_txfm_sse2.h b/vpx_dsp/x86/highbd_inv_txfm_sse2.h
index 78cf9111d..1d07391b0 100644
--- a/vpx_dsp/x86/highbd_inv_txfm_sse2.h
+++ b/vpx_dsp/x86/highbd_inv_txfm_sse2.h
@@ -249,7 +249,7 @@ static INLINE void highbd_idct16_4col_stage7(const __m128i *const in,
static INLINE __m128i add_clamp(const __m128i in0, const __m128i in1,
const int bd) {
- const __m128i zero = _mm_set1_epi16(0);
+ const __m128i zero = _mm_setzero_si128();
// Faster than _mm_set1_epi16((1 << bd) - 1).
const __m128i one = _mm_set1_epi16(1);
const __m128i max = _mm_sub_epi16(_mm_slli_epi16(one, bd), one);