mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-05 07:40:01 +00:00
fft: Mark one function as const and add notes that the structs should be private in 0.11
This commit is contained in:
parent
312d7d8014
commit
445311bff4
5 changed files with 13 additions and 1 deletions
|
@ -44,6 +44,6 @@ typedef enum
|
|||
|
||||
/* Functions */
|
||||
|
||||
gint gst_fft_next_fast_length (gint n);
|
||||
gint gst_fft_next_fast_length (gint n) G_GNUC_CONST;
|
||||
|
||||
#endif /* __GST_FFT_H__ */
|
||||
|
|
|
@ -28,6 +28,9 @@
|
|||
typedef struct _GstFFTF32 GstFFTF32;
|
||||
typedef struct _GstFFTF32Complex GstFFTF32Complex;
|
||||
|
||||
/* FIXME 0.11: Move the struct definition to the sources,
|
||||
* there's no reason to have it public.
|
||||
*/
|
||||
/**
|
||||
* GstFFTF32:
|
||||
*
|
||||
|
|
|
@ -28,6 +28,9 @@
|
|||
typedef struct _GstFFTF64 GstFFTF64;
|
||||
typedef struct _GstFFTF64Complex GstFFTF64Complex;
|
||||
|
||||
/* FIXME 0.11: Move the struct definition to the sources,
|
||||
* there's no reason to have it public.
|
||||
*/
|
||||
/**
|
||||
* GstFFTF64:
|
||||
*
|
||||
|
|
|
@ -28,6 +28,9 @@
|
|||
typedef struct _GstFFTS16 GstFFTS16;
|
||||
typedef struct _GstFFTS16Complex GstFFTS16Complex;
|
||||
|
||||
/* FIXME 0.11: Move the struct definition to the sources,
|
||||
* there's no reason to have it public.
|
||||
*/
|
||||
/**
|
||||
* GstFFTS16:
|
||||
*
|
||||
|
|
|
@ -28,6 +28,9 @@
|
|||
typedef struct _GstFFTS32 GstFFTS32;
|
||||
typedef struct _GstFFTS32Complex GstFFTS32Complex;
|
||||
|
||||
/* FIXME 0.11: Move the struct definition to the sources,
|
||||
* there's no reason to have it public.
|
||||
*/
|
||||
/**
|
||||
* GstFFTS32:
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue