mirror of https://github.com/mpv-player/mpv
10l broken asm crap needs an external name
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16859 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
064fc4f8ad
commit
56527d29bc
|
@ -316,3 +316,9 @@ static void dct64(real *a,real *b,real *c)
|
|||
dct64_1(a,b,bufs,bufs+0x20,c);
|
||||
}
|
||||
|
||||
void mp3lib_dct64(real *a,real *b,real *c)
|
||||
{
|
||||
real bufs[0x40];
|
||||
dct64_1(a,b,bufs,bufs+0x20,c);
|
||||
}
|
||||
|
||||
|
|
|
@ -82,7 +82,7 @@ int synth_1to1_pent(real *bandPtr, int channel, short *samples)
|
|||
" leal (%%ecx,%%ebp,4),%%eax\n\t"
|
||||
".L74:\n\t"
|
||||
" pushl %%eax\n\t"
|
||||
" call "MANGLE(dct64)"\n\t"
|
||||
" call "MANGLE(mp3lib_dct64)"\n\t"
|
||||
" addl $12,%%esp\n\t"
|
||||
" movl %4,%%edx\n\t"
|
||||
" leal 0(,%%edx,4),%%edx\n\t"
|
||||
|
|
Loading…
Reference in New Issue