[Mplayer-cvslog] CVS: main/mp3lib decod386.c,1.8,1.9
Atmosfear
atmos4 at mplayer.dev.hu
Sun Sep 23 04:07:14 CEST 2001
Update of /cvsroot/mplayer/main/mp3lib
In directory mplayer:/var/tmp.root/cvs-serv18456
Modified Files:
decod386.c
Log Message:
Eeeh I need some sleep, accidently commited a wrong version of the files that had other changes, too.
Index: decod386.c
===================================================================
RCS file: /cvsroot/mplayer/main/mp3lib/decod386.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- decod386.c 23 Sep 2001 01:44:37 -0000 1.8
+++ decod386.c 23 Sep 2001 02:07:01 -0000 1.9
@@ -150,13 +150,11 @@
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
More information about the MPlayer-cvslog
mailing list