gstfftf32.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* GStreamer
  2. * Copyright (C) <2007> Sebastian Dröge <[email protected]>
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Library General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2 of the License, or (at your option) any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Library General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Library General Public
  15. * License along with this library; if not, write to the
  16. * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
  17. * Boston, MA 02110-1301, USA.
  18. */
  19. #ifndef __GST_FFT_F32_H__
  20. #define __GST_FFT_F32_H__
  21. #include <glib.h>
  22. #include <gst/gst.h>
  23. #include "gstfft.h"
  24. G_BEGIN_DECLS
  25. typedef struct _GstFFTF32 GstFFTF32;
  26. typedef struct _GstFFTF32Complex GstFFTF32Complex;
  27. /* Copy of kiss_fft_f32_cpx for documentation reasons,
  28. * do NOT change! */
  29. /**
  30. * GstFFTF32Complex:
  31. * @r: Real part
  32. * @i: Imaginary part
  33. *
  34. * Data type for complex numbers composed of
  35. * 32 bit float.
  36. */
  37. struct _GstFFTF32Complex
  38. {
  39. gfloat r;
  40. gfloat i;
  41. };
  42. /* Functions */
  43. GstFFTF32 * gst_fft_f32_new (gint len, gboolean inverse);
  44. void gst_fft_f32_free (GstFFTF32 *self);
  45. void gst_fft_f32_fft (GstFFTF32 *self, const gfloat *timedata,
  46. GstFFTF32Complex *freqdata);
  47. void gst_fft_f32_inverse_fft (GstFFTF32 *self, const GstFFTF32Complex *freqdata,
  48. gfloat *timedata);
  49. void gst_fft_f32_window (GstFFTF32 *self, gfloat *timedata, GstFFTWindow window);
  50. G_END_DECLS
  51. #endif /* __GST_FFT_F32_H__ */