Commit abf1aa87 authored by James Almer's avatar James Almer

x86/v210dec: don't reserve more xmm regs than needed

Prevents pointless register saving on win64 for the sse3 and avx
versions of the function.
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent b0e29357
......@@ -39,7 +39,7 @@ SECTION .text
%macro v210_planar_unpack 1
; v210_planar_unpack(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width)
cglobal v210_planar_unpack_%1, 5, 5, 8
cglobal v210_planar_unpack_%1, 5, 5, 6 + 2 * cpuflag(avx2)
movsxdifnidn r4, r4d
lea r1, [r1+2*r4]
add r2, r4
......
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