comparison mp3lib/decod386.c @ 736:59b0a9ec8604

K7 3dnow-dsp support
author nickols_k
date Wed, 09 May 2001 07:59:55 +0000
parents e14114170e01
children 9bc104531aec
comparison
equal deleted inserted replaced
735:7fc213046812 736:59b0a9ec8604
115 115
116 real *b0,(*buf)[0x110]; 116 real *b0,(*buf)[0x110];
117 int clip = 0; 117 int clip = 0;
118 int bo1; 118 int bo1;
119 119
120 #ifdef HAVE_3DNOWEX
121 if ( _3dnow > 1 )
122 {
123 int ret;
124 ret=synth_1to1_3dnowex( bandPtr,channel,out+*pnt );
125 *pnt+=128;
126 return ret;
127 }
128 #endif
120 #ifdef HAVE_3DNOW 129 #ifdef HAVE_3DNOW
121 if ( _3dnow ) 130 if ( _3dnow )
122 { 131 {
123 int ret; 132 int ret;
124 ret=synth_1to1_3dnow( bandPtr,channel,out+*pnt ); 133 ret=synth_1to1_3dnow( bandPtr,channel,out+*pnt );