summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2014-06-19 01:10:43 -0300
committerMichael Niedermayer <michaelni@gmx.at>2014-06-19 13:18:13 +0200
commit454c019cb536ba5bb2a80d47cfbd12168d1e1db4 (patch)
treeedb108e9644092927c87431bb6e6b67144acfd1c
parentfe782233aa6a74da59e92f21e2a72381a6d3d788 (diff)
downloadffmpeg-streaming-454c019cb536ba5bb2a80d47cfbd12168d1e1db4.zip
ffmpeg-streaming-454c019cb536ba5bb2a80d47cfbd12168d1e1db4.tar.gz
x86/hevc_idct: fix movd parameter size in DC_ADD_INIT
Fixes compilation with NASM x86_64 Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/x86/hevc_idct.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/hevc_idct.asm b/libavcodec/x86/hevc_idct.asm
index 5d2f5b5..6963dc7 100644
--- a/libavcodec/x86/hevc_idct.asm
+++ b/libavcodec/x86/hevc_idct.asm
@@ -32,7 +32,7 @@ SECTION .text
%macro DC_ADD_INIT 2
add %1w, ((1 << 14-8) + 1)
sar %1w, (15-8)
- movd m0, %1
+ movd m0, %1d
lea %1, [%2*3]
SPLATW m0, m0, 0
pxor m1, m1
OpenPOWER on IntegriCloud