diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-10-08 11:22:54 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-10-08 11:23:00 +0200 |
commit | 1f17619fe4800dce32a81fda0cec9afad91ff095 (patch) | |
tree | d8da9d339ec07d6a0910dbe6563ad96d47cfa2b9 /libavcodec/x86/fft.asm | |
parent | 17d9c7c208915c6c090e10508056f68b93440839 (diff) | |
parent | bbe4a6db44f0b55b424a5cc9d3e89cd88e250450 (diff) | |
download | ffmpeg-1f17619fe4800dce32a81fda0cec9afad91ff095.tar.gz |
Merge commit 'bbe4a6db44f0b55b424a5cc9d3e89cd88e250450'
* commit 'bbe4a6db44f0b55b424a5cc9d3e89cd88e250450':
x86inc: Utilize the shadow space on 64-bit Windows
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/x86/fft.asm')
-rw-r--r-- | libavcodec/x86/fft.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/fft.asm b/libavcodec/x86/fft.asm index 5071741d63..879b84e5fd 100644 --- a/libavcodec/x86/fft.asm +++ b/libavcodec/x86/fft.asm @@ -672,13 +672,13 @@ cglobal imdct_calc, 3,5,3 push r1 push r0 %else - sub rsp, 8 + sub rsp, 8+32*WIN64 ; allocate win64 shadow space %endif call r4 %if ARCH_X86_32 add esp, 12 %else - add rsp, 8 + add rsp, 8+32*WIN64 %endif POP r1 POP r3 |