mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
Revert "x86: fft: win64: fix stack alignment for memcpy() call"
This reverts commit8725da49a2
. Necerrary to revert8299260470
.
This commit is contained in:
parent
79a7451d06
commit
f767658414
@ -641,21 +641,19 @@ cglobal fft_permute, 2,7,1
|
||||
%if ARCH_X86_64
|
||||
mov r0, r1
|
||||
mov r1, r5
|
||||
%endif
|
||||
%if WIN64
|
||||
sub rsp, 8
|
||||
call memcpy
|
||||
add rsp, 8
|
||||
RET
|
||||
%elif ARCH_X86_64
|
||||
jmp memcpy
|
||||
%else
|
||||
push r2
|
||||
push r5
|
||||
push r1
|
||||
%endif
|
||||
%if ARCH_X86_64 && WIN64 == 0
|
||||
jmp memcpy
|
||||
%else
|
||||
call memcpy
|
||||
%if ARCH_X86_32
|
||||
add esp, 12
|
||||
RET
|
||||
%endif
|
||||
REP_RET
|
||||
%endif
|
||||
|
||||
cglobal imdct_calc, 3,5,3
|
||||
|
Loading…
Reference in New Issue
Block a user