summaryrefslogtreecommitdiffstats
path: root/mp3lib/decod386.c
diff options
context:
space:
mode:
authoratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-09-23 02:07:01 +0000
committeratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-09-23 02:07:01 +0000
commit16527c55bef477530d02daca995a2ee0cd7f848c (patch)
treee2bda088b52844b8a3902832bdb941e6b4291ca6 /mp3lib/decod386.c
parent7ad13f49b4ee4a297472ee17de694576eb503553 (diff)
downloadmpv-16527c55bef477530d02daca995a2ee0cd7f848c.tar.bz2
mpv-16527c55bef477530d02daca995a2ee0cd7f848c.tar.xz
Eeeh I need some sleep, accidently commited a wrong version of the files that had other changes, too.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1943 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mp3lib/decod386.c')
-rw-r--r--mp3lib/decod386.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/mp3lib/decod386.c b/mp3lib/decod386.c
index 7cf9f44540..b5f9349eaa 100644
--- a/mp3lib/decod386.c
+++ b/mp3lib/decod386.c
@@ -150,13 +150,11 @@ static int synth_1to1_r(real *bandPtr,int channel,unsigned char *out,int *pnt)
synth_func_t synth_func;
#ifdef HAVE_MMX
-int synth_1to1_MMX( real *bandPtr ,int channel,short * samples)
+int synth_1to1_MMX( real *bandPtr,int channel,short * samples)
{
- real *mybandPtr __attribute__((aligned(16))) = bandPtr;
- short *mysamples __attribute__((aligned(16))) = samples;
- static short buffs[2][2][0x110] __attribute__((aligned(16)));
- static int bo __attribute__((aligned(16))) = 1;
- synth_1to1_MMX_s(mybandPtr, channel, mysamples, (short *) buffs, &bo);
+ static short buffs[2][2][0x110];
+ static int bo = 1;
+ synth_1to1_MMX_s(bandPtr, channel, samples, (short *) buffs, &bo);
return 0;
}
#endif