annotate constant-q-cpp/src/ext/kissfft/kiss_fft.h @ 372:af71cbdab621 tip

Update bqvec code
author Chris Cannam
date Tue, 19 Nov 2019 10:13:32 +0000
parents 5d0a2ebb4d17
children
rev   line source
Chris@366 1 #ifndef KISS_FFT_H
Chris@366 2 #define KISS_FFT_H
Chris@366 3
Chris@366 4 #include <stdlib.h>
Chris@366 5 #include <stdio.h>
Chris@366 6 #include <math.h>
Chris@366 7 #include <string.h>
Chris@366 8
Chris@366 9 #ifdef __cplusplus
Chris@366 10 extern "C" {
Chris@366 11 #endif
Chris@366 12
Chris@366 13 /*
Chris@366 14 ATTENTION!
Chris@366 15 If you would like a :
Chris@366 16 -- a utility that will handle the caching of fft objects
Chris@366 17 -- real-only (no imaginary time component ) FFT
Chris@366 18 -- a multi-dimensional FFT
Chris@366 19 -- a command-line utility to perform ffts
Chris@366 20 -- a command-line utility to perform fast-convolution filtering
Chris@366 21
Chris@366 22 Then see kfc.h kiss_fftr.h kiss_fftnd.h fftutil.c kiss_fastfir.c
Chris@366 23 in the tools/ directory.
Chris@366 24 */
Chris@366 25
Chris@366 26 #ifdef USE_SIMD
Chris@366 27 # include <xmmintrin.h>
Chris@366 28 # define kiss_fft_scalar __m128
Chris@366 29 #define KISS_FFT_MALLOC(nbytes) _mm_malloc(nbytes,16)
Chris@366 30 #define KISS_FFT_FREE _mm_free
Chris@366 31 #else
Chris@366 32 #define KISS_FFT_MALLOC malloc
Chris@366 33 #define KISS_FFT_FREE free
Chris@366 34 #endif
Chris@366 35
Chris@366 36
Chris@366 37 #ifdef FIXED_POINT
Chris@366 38 #include <sys/types.h>
Chris@366 39 # if (FIXED_POINT == 32)
Chris@366 40 # define kiss_fft_scalar int32_t
Chris@366 41 # else
Chris@366 42 # define kiss_fft_scalar int16_t
Chris@366 43 # endif
Chris@366 44 #else
Chris@366 45 # ifndef kiss_fft_scalar
Chris@366 46 /* default is float */
Chris@366 47 # define kiss_fft_scalar float
Chris@366 48 # endif
Chris@366 49 #endif
Chris@366 50
Chris@366 51 typedef struct {
Chris@366 52 kiss_fft_scalar r;
Chris@366 53 kiss_fft_scalar i;
Chris@366 54 }kiss_fft_cpx;
Chris@366 55
Chris@366 56 typedef struct kiss_fft_state* kiss_fft_cfg;
Chris@366 57
Chris@366 58 /*
Chris@366 59 * kiss_fft_alloc
Chris@366 60 *
Chris@366 61 * Initialize a FFT (or IFFT) algorithm's cfg/state buffer.
Chris@366 62 *
Chris@366 63 * typical usage: kiss_fft_cfg mycfg=kiss_fft_alloc(1024,0,NULL,NULL);
Chris@366 64 *
Chris@366 65 * The return value from fft_alloc is a cfg buffer used internally
Chris@366 66 * by the fft routine or NULL.
Chris@366 67 *
Chris@366 68 * If lenmem is NULL, then kiss_fft_alloc will allocate a cfg buffer using malloc.
Chris@366 69 * The returned value should be free()d when done to avoid memory leaks.
Chris@366 70 *
Chris@366 71 * The state can be placed in a user supplied buffer 'mem':
Chris@366 72 * If lenmem is not NULL and mem is not NULL and *lenmem is large enough,
Chris@366 73 * then the function places the cfg in mem and the size used in *lenmem
Chris@366 74 * and returns mem.
Chris@366 75 *
Chris@366 76 * If lenmem is not NULL and ( mem is NULL or *lenmem is not large enough),
Chris@366 77 * then the function returns NULL and places the minimum cfg
Chris@366 78 * buffer size in *lenmem.
Chris@366 79 * */
Chris@366 80
Chris@366 81 kiss_fft_cfg kiss_fft_alloc(int nfft,int inverse_fft,void * mem,size_t * lenmem);
Chris@366 82
Chris@366 83 /*
Chris@366 84 * kiss_fft(cfg,in_out_buf)
Chris@366 85 *
Chris@366 86 * Perform an FFT on a complex input buffer.
Chris@366 87 * for a forward FFT,
Chris@366 88 * fin should be f[0] , f[1] , ... ,f[nfft-1]
Chris@366 89 * fout will be F[0] , F[1] , ... ,F[nfft-1]
Chris@366 90 * Note that each element is complex and can be accessed like
Chris@366 91 f[k].r and f[k].i
Chris@366 92 * */
Chris@366 93 void kiss_fft(kiss_fft_cfg cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout);
Chris@366 94
Chris@366 95 /*
Chris@366 96 A more generic version of the above function. It reads its input from every Nth sample.
Chris@366 97 * */
Chris@366 98 void kiss_fft_stride(kiss_fft_cfg cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout,int fin_stride);
Chris@366 99
Chris@366 100 /* If kiss_fft_alloc allocated a buffer, it is one contiguous
Chris@366 101 buffer and can be simply free()d when no longer needed*/
Chris@366 102 #define kiss_fft_free free
Chris@366 103
Chris@366 104 /*
Chris@366 105 Cleans up some memory that gets managed internally. Not necessary to call, but it might clean up
Chris@366 106 your compiler output to call this before you exit.
Chris@366 107 */
Chris@366 108 void kiss_fft_cleanup(void);
Chris@366 109
Chris@366 110
Chris@366 111 /*
Chris@366 112 * Returns the smallest integer k, such that k>=n and k has only "fast" factors (2,3,5)
Chris@366 113 */
Chris@366 114 int kiss_fft_next_fast_size(int n);
Chris@366 115
Chris@366 116 /* for real ffts, we need an even size */
Chris@366 117 #define kiss_fftr_next_fast_size_real(n) \
Chris@366 118 (kiss_fft_next_fast_size( ((n)+1)>>1)<<1)
Chris@366 119
Chris@366 120 #ifdef __cplusplus
Chris@366 121 }
Chris@366 122 #endif
Chris@366 123
Chris@366 124 #endif