lossless_videodsp.asm: fix compilation.
Fixes these errors with nasm: libavcodec/x86/lossless_videodsp.asm:86: error: invalid combination of opcode and operands libavcodec/x86/lossless_videodsp.asm:88: error: invalid combination of opcode and operands I don't know whether movd or movq was meant, but either way maskq vs. maskd must match the mov size. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
This commit is contained in:
@@ -32,7 +32,7 @@ pb_zzzzzzzz67676767: db -1,-1,-1,-1,-1,-1,-1,-1, 6, 7, 6, 7, 6, 7, 6, 7
|
|||||||
SECTION_TEXT
|
SECTION_TEXT
|
||||||
|
|
||||||
%macro ADD_INT16_LOOP 1 ; %1 = is_aligned
|
%macro ADD_INT16_LOOP 1 ; %1 = is_aligned
|
||||||
movd m4, maskq
|
movd m4, maskd
|
||||||
SPLATW m4, m4
|
SPLATW m4, m4
|
||||||
add wq, wq
|
add wq, wq
|
||||||
test wq, 2*mmsize - 1
|
test wq, 2*mmsize - 1
|
||||||
|
Reference in New Issue
Block a user