Commit 454c019c authored by James Almer's avatar James Almer Committed by Michael Niedermayer

x86/hevc_idct: fix movd parameter size in DC_ADD_INIT

Fixes compilation with NASM x86_64
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent fe782233
...@@ -32,7 +32,7 @@ SECTION .text ...@@ -32,7 +32,7 @@ SECTION .text
%macro DC_ADD_INIT 2 %macro DC_ADD_INIT 2
add %1w, ((1 << 14-8) + 1) add %1w, ((1 << 14-8) + 1)
sar %1w, (15-8) sar %1w, (15-8)
movd m0, %1 movd m0, %1d
lea %1, [%2*3] lea %1, [%2*3]
SPLATW m0, m0, 0 SPLATW m0, m0, 0
pxor m1, m1 pxor m1, m1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment