Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
ffmpeg
Commits
8725da49
Commit
8725da49
authored
Jun 25, 2012
by
Mans Rullgard
Browse files
x86: fft: win64: fix stack alignment for memcpy() call
parent
dc538580
Changes
1
Hide whitespace changes
Inline
Side-by-side
libavcodec/x86/fft_mmx.asm
View file @
8725da49
...
...
@@ -640,19 +640,21 @@ 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
%endif
REP_RET
RET
%endif
cglobal
imdct_calc
,
3
,
5
,
3
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment