~ubuntu-branches/ubuntu/raring/mumble/raring

« back to all changes in this revision

Viewing changes to celt-0.7.0-src/libcelt/kiss_fftr.h

  • Committer: Bazaar Package Importer
  • Author(s): Thorvald Natvig
  • Date: 2010-01-09 19:28:50 UTC
  • mfrom: (9.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100109192850-zs4g5vwrrpd71kob
Tags: 1.2.1-2
Fix upgrade failure when upgrading mumble-server directly from 1.1.x
to 1.2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
#define kiss_fftr SUF(kiss_fftr,KF_SUFFIX)
32
32
#define kiss_fftri SUF(kiss_fftri,KF_SUFFIX)
33
33
 
34
 
/*
35
 
 
 
34
/* 
 
35
 
36
36
 Real optimized version can save about 45% cpu time vs. complex fft of a real seq.
37
37
 
38
 
 
39
 
 
 
38
 
 
39
 
40
40
 */
41
41
 
42
42
struct kiss_fftr_state{
43
43
      kiss_fft_cfg substate;
44
44
      kiss_twiddle_cpx * super_twiddles;
45
 
#ifdef USE_SIMD
 
45
#ifdef USE_SIMD    
46
46
      long pad;
47
 
#endif
 
47
#endif    
48
48
   };
49
49
 
50
50
typedef struct kiss_fftr_state *kiss_fftr_cfg;
54
54
/*
55
55
 nfft must be even
56
56
 
57
 
 If you don't care to allocate space, use mem = lenmem = NULL
 
57
 If you don't care to allocate space, use mem = lenmem = NULL 
58
58
*/
59
59
 
60
60