# HG changeset patch # User atmos4 # Date 1001210821 0 # Node ID 853be3ebe8621cb9dbdeaa2528aad68c9569f648 # Parent 2668fc1b8839ff4219f0980a8842e54641732a13 Eeeh I need some sleep, accidently commited a wrong version of the files that had other changes, too. diff -r 2668fc1b8839 -r 853be3ebe862 mp3lib/decod386.c --- a/mp3lib/decod386.c Sun Sep 23 01:44:37 2001 +0000 +++ b/mp3lib/decod386.c Sun Sep 23 02:07:01 2001 +0000 @@ -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