summaryrefslogtreecommitdiff
path: root/gr-fft/include
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2012-07-03 19:55:34 -0400
committerTom Rondeau <trondeau@vt.edu>2012-07-03 19:55:34 -0400
commit1b6152005ca48614942bb8260d340c3dba039c11 (patch)
tree5010f419ab446f272e63d938730666d65785eb3f /gr-fft/include
parentd25aca5436ca7d08a7cfd5f9758710e1854bf087 (diff)
fft: adding a malloc for doubles.
In core for master, also exporting symbols for use externally.
Diffstat (limited to 'gr-fft/include')
-rw-r--r--gr-fft/include/fft/fft.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/gr-fft/include/fft/fft.h b/gr-fft/include/fft/fft.h
index e3fd3f278a..305b1cb711 100644
--- a/gr-fft/include/fft/fft.h
+++ b/gr-fft/include/fft/fft.h
@@ -35,14 +35,18 @@ namespace gr {
namespace fft {
- /*! \brief Helper function for allocating complex fft buffers
+ /*! \brief Helper function for allocating complex* buffers
*/
FFT_API gr_complex* malloc_complex(int size);
- /*! \brief Helper function for allocating float fft buffers
+ /*! \brief Helper function for allocating float* buffers
*/
FFT_API float* malloc_float(int size);
+ /*! \brief Helper function for allocating double* buffers
+ */
+ FFT_API double* malloc_double(int size);
+
/*! \brief Helper function for freeing fft buffers
*/
FFT_API void free(void *b);