mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 19:21:06 +00:00
libs/gst/: Fix empty prototypes. Fixes bug #507957.
Original commit message from CVS: Patch by: Damien Lespiau <damien.lespiau@gmail.com> * libs/gst/controller/gstcontroller.h: * libs/gst/controller/gstcontrolsource.h: * libs/gst/controller/gstinterpolationcontrolsource.h: * libs/gst/controller/gstlfocontrolsource.h: * libs/gst/dataprotocol/dataprotocol.h: Fix empty prototypes. Fixes bug #507957.
This commit is contained in:
parent
57be62ba00
commit
16fe8b9626
6 changed files with 19 additions and 8 deletions
11
ChangeLog
11
ChangeLog
|
@ -1,3 +1,14 @@
|
|||
2008-01-07 David Schleef <ds@schleef.org>
|
||||
|
||||
Patch by: Damien Lespiau <damien.lespiau@gmail.com>
|
||||
|
||||
* libs/gst/controller/gstcontroller.h:
|
||||
* libs/gst/controller/gstcontrolsource.h:
|
||||
* libs/gst/controller/gstinterpolationcontrolsource.h:
|
||||
* libs/gst/controller/gstlfocontrolsource.h:
|
||||
* libs/gst/dataprotocol/dataprotocol.h:
|
||||
Fix empty prototypes. Fixes bug #507957.
|
||||
|
||||
2008-01-07 David Schleef <ds@schleef.org>
|
||||
|
||||
* docs/faq/dependencies.xml: Fix typo.
|
||||
|
|
|
@ -84,7 +84,7 @@ struct _GstControllerClass
|
|||
gpointer _gst_reserved[GST_PADDING];
|
||||
};
|
||||
|
||||
GType gst_controller_get_type ();
|
||||
GType gst_controller_get_type (void);
|
||||
|
||||
/* GstController functions */
|
||||
|
||||
|
|
|
@ -150,7 +150,7 @@ struct _GstControlSourceClass
|
|||
gpointer _gst_reserved[GST_PADDING];
|
||||
};
|
||||
|
||||
GType gst_control_source_get_type ();
|
||||
GType gst_control_source_get_type (void);
|
||||
|
||||
/* Functions */
|
||||
|
||||
|
|
|
@ -91,11 +91,11 @@ struct _GstInterpolationControlSourceClass {
|
|||
gpointer _gst_reserved[GST_PADDING];
|
||||
};
|
||||
|
||||
GType gst_interpolation_control_source_get_type ();
|
||||
GType gst_interpolation_control_source_get_type (void);
|
||||
|
||||
/* Functions */
|
||||
|
||||
GstInterpolationControlSource *gst_interpolation_control_source_new ();
|
||||
GstInterpolationControlSource *gst_interpolation_control_source_new (void);
|
||||
gboolean gst_interpolation_control_source_set_interpolation_mode (GstInterpolationControlSource *self, GstInterpolateMode mode);
|
||||
gboolean gst_interpolation_control_source_set (GstInterpolationControlSource * self, GstClockTime timestamp, GValue * value);
|
||||
gboolean gst_interpolation_control_source_set_from_list (GstInterpolationControlSource * self, GSList * timedvalues);
|
||||
|
|
|
@ -90,12 +90,12 @@ struct _GstLFOControlSourceClass {
|
|||
gpointer _gst_reserved[GST_PADDING];
|
||||
};
|
||||
|
||||
GType gst_lfo_control_source_get_type ();
|
||||
GType gst_lfo_waveform_get_type ();
|
||||
GType gst_lfo_control_source_get_type (void);
|
||||
GType gst_lfo_waveform_get_type (void);
|
||||
|
||||
/* Functions */
|
||||
|
||||
GstLFOControlSource *gst_lfo_control_source_new ();
|
||||
GstLFOControlSource *gst_lfo_control_source_new (void);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ typedef enum {
|
|||
GST_DP_VERSION_1_0,
|
||||
} GstDPVersion;
|
||||
|
||||
GType gst_dp_version_get_type ();
|
||||
GType gst_dp_version_get_type (void);
|
||||
#define GST_TYPE_DP_VERSION (gst_dp_version_get_type ())
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue