diff options
author | Christophe Gisquet <christophe.gisquet@gmail.com> | 2014-08-24 08:46:31 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-24 11:43:33 +0200 |
commit | 38e2aa3759c6f3498637ca6aac4e897f4b2c7e3c (patch) | |
tree | 6b122de48e72c3e79ed9e99b45e32ded5602e205 /libavcodec/x86/hevc_mc.asm | |
parent | 1506ea947d3c527f67a5caa93cc7fa0d064bbf1f (diff) | |
download | ffmpeg-38e2aa3759c6f3498637ca6aac4e897f4b2c7e3c.tar.gz |
x86: hevc_mc: correct unneeded use of SSE4 code
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/x86/hevc_mc.asm')
-rw-r--r-- | libavcodec/x86/hevc_mc.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/hevc_mc.asm b/libavcodec/x86/hevc_mc.asm index 06fec12126..e12620089f 100644 --- a/libavcodec/x86/hevc_mc.asm +++ b/libavcodec/x86/hevc_mc.asm @@ -891,7 +891,7 @@ cglobal hevc_put_hevc_uni_qpel_v%1_%2, 7, 9, 15, dst, dststride, src, srcstride, QPEL_V_LOAD %2, srcq, srcstride, %1, r8 QPEL_COMPUTE %1, %2 %if %2 > 8 - packusdw m0, m1 + packssdw m0, m1 %endif UNI_COMPUTE %1, %2, m0, m1, m9 PEL_%2STORE%1 dstq, m0, m1 |