gst_plugins_base/gst-libs/gst/fft/gstfftf64.h
changeset 0 0e761a78d257
equal deleted inserted replaced
-1:000000000000 0:0e761a78d257
       
     1 /* GStreamer
       
     2  * Copyright (C) <2007> Sebastian Dröge <slomo@circular-chaos.org>
       
     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., 59 Temple Place - Suite 330,
       
    17  * Boston, MA 02111-1307, USA.
       
    18  */
       
    19 
       
    20 #ifndef __GST_FFT_F64_H__
       
    21 #define __GST_FFT_F64_H__
       
    22 
       
    23 #include <glib.h>
       
    24 #include <gst/gst.h>
       
    25 
       
    26 #include "gstfft.h"
       
    27 
       
    28 typedef struct _GstFFTF64 GstFFTF64;
       
    29 typedef struct _GstFFTF64Complex GstFFTF64Complex;
       
    30 
       
    31 /**
       
    32  * GstFFTF64:
       
    33  *
       
    34  * Instance structure for #GstFFTF64.
       
    35  *
       
    36  */
       
    37 struct _GstFFTF64 {
       
    38   /* <private> */
       
    39   void * cfg;
       
    40   gboolean inverse;
       
    41   gint len;
       
    42   gpointer _padding[GST_PADDING];
       
    43 };
       
    44 
       
    45 /* Copy of kiss_fft_f64_cpx for documentation reasons,
       
    46  * do NOT change! */
       
    47 
       
    48 /**
       
    49  * GstFFTF64Complex:
       
    50  * @r: Real part
       
    51  * @i: Imaginary part
       
    52  *
       
    53  * Data type for complex numbers composed of
       
    54  * 64 bit float.
       
    55  *
       
    56  */
       
    57 struct _GstFFTF64Complex
       
    58 {
       
    59   gdouble r;
       
    60   gdouble i;
       
    61 };
       
    62 
       
    63 /* Functions */
       
    64 #ifdef __SYMBIAN32__
       
    65 IMPORT_C
       
    66 #endif
       
    67 
       
    68 
       
    69 GstFFTF64 * gst_fft_f64_new (gint len, gboolean inverse);
       
    70 #ifdef __SYMBIAN32__
       
    71 IMPORT_C
       
    72 #endif
       
    73 
       
    74 void gst_fft_f64_fft (GstFFTF64 *self, const gdouble *timedata, GstFFTF64Complex *freqdata);
       
    75 #ifdef __SYMBIAN32__
       
    76 IMPORT_C
       
    77 #endif
       
    78 
       
    79 void gst_fft_f64_inverse_fft (GstFFTF64 *self, const GstFFTF64Complex *freqdata, gdouble *timedata);
       
    80 #ifdef __SYMBIAN32__
       
    81 IMPORT_C
       
    82 #endif
       
    83 
       
    84 void gst_fft_f64_free (GstFFTF64 *self);
       
    85 #ifdef __SYMBIAN32__
       
    86 IMPORT_C
       
    87 #endif
       
    88 
       
    89 
       
    90 void gst_fft_f64_window (GstFFTF64 *self, gdouble *timedata, GstFFTWindow window);
       
    91 
       
    92 #endif /* __GST_FFT_F64_H__ */