summaryrefslogtreecommitdiff
path: root/vpx_dsp
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2017-07-31 22:43:41 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-07-31 22:43:41 +0000
commit78e2da3e42cd77859f95fb4555b33bfae9ef3799 (patch)
treeff979a2df3d8c5754ffa76371b06d048a2198e0f /vpx_dsp
parentebb023deb64a5707d0627f55ea0a701945cd6940 (diff)
parent78155b7ed5a2fe7d2447912e3f0b1dc7463c650a (diff)
downloadlibvpx-78e2da3e42cd77859f95fb4555b33bfae9ef3799.tar
libvpx-78e2da3e42cd77859f95fb4555b33bfae9ef3799.tar.gz
libvpx-78e2da3e42cd77859f95fb4555b33bfae9ef3799.tar.bz2
libvpx-78e2da3e42cd77859f95fb4555b33bfae9ef3799.zip
Merge "highbd_inv_txfm_sse4: make << of neg. val a multiply"
Diffstat (limited to 'vpx_dsp')
-rw-r--r--vpx_dsp/x86/highbd_inv_txfm_sse4.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vpx_dsp/x86/highbd_inv_txfm_sse4.h b/vpx_dsp/x86/highbd_inv_txfm_sse4.h
index 170f641d3..d19887d00 100644
--- a/vpx_dsp/x86/highbd_inv_txfm_sse4.h
+++ b/vpx_dsp/x86/highbd_inv_txfm_sse4.h
@@ -18,7 +18,7 @@
static INLINE __m128i multiplication_round_shift_sse4_1(
const __m128i *const in /*in[2]*/, const int c) {
- const __m128i pair_c = pair_set_epi32(c << 2, 0);
+ const __m128i pair_c = pair_set_epi32(c * 4, 0);
__m128i t0, t1;
t0 = _mm_mul_epi32(in[0], pair_c);