annotate ext/kissfft/kiss_fft.h @ 206:335be766a54d

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