fft: Mark one function as const and add notes that the structs should be private in 0.11

This commit is contained in:
Sebastian Dröge 2009-09-11 07:20:49 +02:00
parent 312d7d8014
commit 445311bff4
5 changed files with 13 additions and 1 deletions

View file

@ -44,6 +44,6 @@ typedef enum
/* Functions */ /* Functions */
gint gst_fft_next_fast_length (gint n); gint gst_fft_next_fast_length (gint n) G_GNUC_CONST;
#endif /* __GST_FFT_H__ */ #endif /* __GST_FFT_H__ */

View file

@ -28,6 +28,9 @@
typedef struct _GstFFTF32 GstFFTF32; typedef struct _GstFFTF32 GstFFTF32;
typedef struct _GstFFTF32Complex GstFFTF32Complex; typedef struct _GstFFTF32Complex GstFFTF32Complex;
/* FIXME 0.11: Move the struct definition to the sources,
* there's no reason to have it public.
*/
/** /**
* GstFFTF32: * GstFFTF32:
* *

View file

@ -28,6 +28,9 @@
typedef struct _GstFFTF64 GstFFTF64; typedef struct _GstFFTF64 GstFFTF64;
typedef struct _GstFFTF64Complex GstFFTF64Complex; typedef struct _GstFFTF64Complex GstFFTF64Complex;
/* FIXME 0.11: Move the struct definition to the sources,
* there's no reason to have it public.
*/
/** /**
* GstFFTF64: * GstFFTF64:
* *

View file

@ -28,6 +28,9 @@
typedef struct _GstFFTS16 GstFFTS16; typedef struct _GstFFTS16 GstFFTS16;
typedef struct _GstFFTS16Complex GstFFTS16Complex; typedef struct _GstFFTS16Complex GstFFTS16Complex;
/* FIXME 0.11: Move the struct definition to the sources,
* there's no reason to have it public.
*/
/** /**
* GstFFTS16: * GstFFTS16:
* *

View file

@ -28,6 +28,9 @@
typedef struct _GstFFTS32 GstFFTS32; typedef struct _GstFFTS32 GstFFTS32;
typedef struct _GstFFTS32Complex GstFFTS32Complex; typedef struct _GstFFTS32Complex GstFFTS32Complex;
/* FIXME 0.11: Move the struct definition to the sources,
* there's no reason to have it public.
*/
/** /**
* GstFFTS32: * GstFFTS32:
* *