Subversion Repositories svnkaklik

Compare Revisions

Ignore whitespace Rev 477 → Rev 481

/programy/C/ix86/SID/src/sidd.c
438,8 → 438,8
c->powspec[ 0] = 0.0; // Zero the DC component
for( i=1; i<BINS; i++)
{
double t1 = c->fft_data[ i][0];
double t2 = c->fft_data[ i][1];
double t1 = c->fft_data[i,0];
double t2 = c->fft_data[i,1];
c->powspec[ i] = t1*t1 + t2*t2;
}