View | Details | Raw Unified | Return to bug 31852
Collapse All | Expand All

(-)audacity/lib-src/sbsms/src/fft.h.orig (+4 lines)
Lines 332-339 Link Here
332
    for(int k=0; k<N; k++) {
332
    for(int k=0; k<N; k++) {
333
      float c = cos(TWOPI * (float)k / (float)N);
333
      float c = cos(TWOPI * (float)k / (float)N);
334
      float s = sin(TWOPI * (float)(-dir*k) / (float)N);
334
      float s = sin(TWOPI * (float)(-dir*k) / (float)N);
335
#if !(defined(__LCC__) && __LCC__ <= 121)
335
      simd_vector v = {c,s,c,-s};
336
      simd_vector v = {c,s,c,-s};
336
      cs[k] = v;
337
      cs[k] = v;
338
#else
339
      cs[k] = _mm_set_ps(c,s,c,-s);
340
#endif
337
    }
341
    }
338
  }
342
  }
339
};
343
};

Return to bug 31852