diff options
author | faust3 <faust3@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2004-08-03 18:54:26 +0000 |
---|---|---|
committer | faust3 <faust3@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2004-08-03 18:54:26 +0000 |
commit | 9bb8541622921fcbb1e9081e302a15de63cdd7bf (patch) | |
tree | 19909c75dc7770dff98f18e962a22b73f146e360 | |
parent | d377a4feb969c049914dd7452533f5c07fd80d2d (diff) |
avoid outoptimization of static variables patch by ismail dönmez <ismail.donmez at gmail.com>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12946 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | mp3lib/decode_i586.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mp3lib/decode_i586.c b/mp3lib/decode_i586.c index 41f239126a..82a43f4eeb 100644 --- a/mp3lib/decode_i586.c +++ b/mp3lib/decode_i586.c @@ -27,9 +27,9 @@ #include "../mangle.h" #define real float /* ugly - but only way */ -static long buffs[1088]={0}; +static long attribute_used buffs[1088]={0}; static long attribute_used bo=1; -static long saved_ebp=0; +static long attribute_used saved_ebp=0; int synth_1to1_pent(real *bandPtr, int channel, short *samples) { |