Browse Source

x86/vf_hflip: use xor to zero initialize registers

Signed-off-by: James Almer <jamrial@gmail.com>
tags/n4.0
James Almer 8 years ago
parent
commit
f2aa0ce5a0
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavfilter/x86/vf_hflip.asm

+ 2
- 2
libavfilter/x86/vf_hflip.asm View File

@@ -32,7 +32,7 @@ SECTION .text
INIT_XMM ssse3
cglobal hflip_byte, 3, 5, 3, src, dst, w, r, x
mova m0, [pb_flip_byte]
mov xq, 0
xor xq, xq
movsxdifnidn wq, wd
mov rq, wq
and rq, 2 * mmsize - 1
@@ -70,7 +70,7 @@ RET

cglobal hflip_short, 3, 5, 3, src, dst, w, r, x
mova m0, [pb_flip_short]
mov xq, 0
xor xq, xq
add wd, wd
mov rq, wq
and rq, 2 * mmsize - 1


Loading…
Cancel
Save