annotate dsp/transforms/kissfft/kiss_fft.h @ 73:dcb555b90924

* Key detector: when returning key strengths, use the peak value of the three underlying chromagram correlations (from 36-bin chromagram) corresponding to each key, instead of the mean. Rationale: This is the same method as used when returning the key value, and it's nice to have the same results in both returned value and plot. The peak performed better than the sum with a simple test set of triads, so it seems reasonable to change the plot to match the key output rather than the other way around. * FFT: kiss_fftr returns only the non-conjugate bins, synthesise the rest rather than leaving them (perhaps dangerously) undefined. Fixes an uninitialised data error in chromagram that could cause garbage results from key detector. * Constant Q: remove precalculated values again, I reckon they're not proving such a good tradeoff.
author cannam
date Fri, 05 Jun 2009 15:12:39 +0000
parents d0b35b1e3a98
children
rev   line source
cannam@64 1 #ifndef KISS_FFT_H
cannam@64 2 #define KISS_FFT_H
cannam@64 3
cannam@64 4 #include <stdlib.h>
cannam@64 5 #include <stdio.h>
cannam@64 6 #include <math.h>
cannam@64 7 #include <memory.h>
cannam@72 8 #ifdef __APPLE__
cannam@72 9 #include <malloc/malloc.h>
cannam@72 10 #else
cannam@64 11 #include <malloc.h>
cannam@72 12 #endif
cannam@64 13
cannam@64 14 #ifdef __cplusplus
cannam@64 15 extern "C" {
cannam@64 16 #endif
cannam@64 17
cannam@64 18 #ifdef USE_SIMD
cannam@64 19 # include <xmmintrin.h>
cannam@64 20 # define kiss_fft_scalar __m128
cannam@64 21 #define KISS_FFT_MALLOC(nbytes) memalign(16,nbytes)
cannam@64 22 #else
cannam@64 23 #define KISS_FFT_MALLOC malloc
cannam@64 24 #endif
cannam@64 25
cannam@64 26
cannam@64 27 #ifdef FIXED_POINT
cannam@64 28 #include <sys/types.h>
cannam@64 29 # if (FIXED_POINT == 32)
cannam@64 30 # define kiss_fft_scalar int32_t
cannam@64 31 # else
cannam@64 32 # define kiss_fft_scalar int16_t
cannam@64 33 # endif
cannam@64 34 #else
cannam@64 35 # ifndef kiss_fft_scalar
cannam@64 36 /* default is float */
cannam@64 37 /* # define kiss_fft_scalar float */
cannam@64 38 /* ... but doubles for QM library ... */
cannam@64 39 #define kiss_fft_scalar double
cannam@64 40 # endif
cannam@64 41 #endif
cannam@64 42
cannam@64 43 typedef struct {
cannam@64 44 kiss_fft_scalar r;
cannam@64 45 kiss_fft_scalar i;
cannam@64 46 }kiss_fft_cpx;
cannam@64 47
cannam@64 48 typedef struct kiss_fft_state* kiss_fft_cfg;
cannam@64 49
cannam@64 50 /*
cannam@64 51 * kiss_fft_alloc
cannam@64 52 *
cannam@64 53 * Initialize a FFT (or IFFT) algorithm's cfg/state buffer.
cannam@64 54 *
cannam@64 55 * typical usage: kiss_fft_cfg mycfg=kiss_fft_alloc(1024,0,NULL,NULL);
cannam@64 56 *
cannam@64 57 * The return value from fft_alloc is a cfg buffer used internally
cannam@64 58 * by the fft routine or NULL.
cannam@64 59 *
cannam@64 60 * If lenmem is NULL, then kiss_fft_alloc will allocate a cfg buffer using malloc.
cannam@64 61 * The returned value should be free()d when done to avoid memory leaks.
cannam@64 62 *
cannam@64 63 * The state can be placed in a user supplied buffer 'mem':
cannam@64 64 * If lenmem is not NULL and mem is not NULL and *lenmem is large enough,
cannam@64 65 * then the function places the cfg in mem and the size used in *lenmem
cannam@64 66 * and returns mem.
cannam@64 67 *
cannam@64 68 * If lenmem is not NULL and ( mem is NULL or *lenmem is not large enough),
cannam@64 69 * then the function returns NULL and places the minimum cfg
cannam@64 70 * buffer size in *lenmem.
cannam@64 71 * */
cannam@64 72
cannam@64 73 kiss_fft_cfg kiss_fft_alloc(int nfft,int inverse_fft,void * mem,size_t * lenmem);
cannam@64 74
cannam@64 75 /*
cannam@64 76 * kiss_fft(cfg,in_out_buf)
cannam@64 77 *
cannam@64 78 * Perform an FFT on a complex input buffer.
cannam@64 79 * for a forward FFT,
cannam@64 80 * fin should be f[0] , f[1] , ... ,f[nfft-1]
cannam@64 81 * fout will be F[0] , F[1] , ... ,F[nfft-1]
cannam@64 82 * Note that each element is complex and can be accessed like
cannam@64 83 f[k].r and f[k].i
cannam@64 84 * */
cannam@64 85 void kiss_fft(kiss_fft_cfg cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout);
cannam@64 86
cannam@64 87 /*
cannam@64 88 A more generic version of the above function. It reads its input from every Nth sample.
cannam@64 89 * */
cannam@64 90 void kiss_fft_stride(kiss_fft_cfg cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout,int fin_stride);
cannam@64 91
cannam@64 92 /* If kiss_fft_alloc allocated a buffer, it is one contiguous
cannam@64 93 buffer and can be simply free()d when no longer needed*/
cannam@64 94 #define kiss_fft_free free
cannam@64 95
cannam@64 96 /*
cannam@64 97 Cleans up some memory that gets managed internally. Not necessary to call, but it might clean up
cannam@64 98 your compiler output to call this before you exit.
cannam@64 99 */
cannam@64 100 void kiss_fft_cleanup(void);
cannam@64 101
cannam@64 102
cannam@64 103 /*
cannam@64 104 * Returns the smallest integer k, such that k>=n and k has only "fast" factors (2,3,5)
cannam@64 105 */
cannam@64 106 int kiss_fft_next_fast_size(int n);
cannam@64 107
cannam@64 108 #ifdef __cplusplus
cannam@64 109 }
cannam@64 110 #endif
cannam@64 111
cannam@64 112 #endif