From 16fe8b962658e161690251c44c76139c66044c6d Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Tue, 8 Jan 2008 02:07:38 +0000 Subject: [PATCH] libs/gst/: Fix empty prototypes. Fixes bug #507957. Original commit message from CVS: Patch by: Damien Lespiau * 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. --- ChangeLog | 11 +++++++++++ libs/gst/controller/gstcontroller.h | 2 +- libs/gst/controller/gstcontrolsource.h | 2 +- libs/gst/controller/gstinterpolationcontrolsource.h | 4 ++-- libs/gst/controller/gstlfocontrolsource.h | 6 +++--- libs/gst/dataprotocol/dataprotocol.h | 2 +- 6 files changed, 19 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1ad167d..c236069 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,16 @@ 2008-01-07 David Schleef + Patch by: Damien Lespiau + + * 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 + * docs/faq/dependencies.xml: Fix typo. 2008-01-07 Wim Taymans diff --git a/libs/gst/controller/gstcontroller.h b/libs/gst/controller/gstcontroller.h index d8514e1..b729de6 100644 --- a/libs/gst/controller/gstcontroller.h +++ b/libs/gst/controller/gstcontroller.h @@ -84,7 +84,7 @@ struct _GstControllerClass gpointer _gst_reserved[GST_PADDING]; }; -GType gst_controller_get_type (); +GType gst_controller_get_type (void); /* GstController functions */ diff --git a/libs/gst/controller/gstcontrolsource.h b/libs/gst/controller/gstcontrolsource.h index c3db579..71fb2aa 100644 --- a/libs/gst/controller/gstcontrolsource.h +++ b/libs/gst/controller/gstcontrolsource.h @@ -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 */ diff --git a/libs/gst/controller/gstinterpolationcontrolsource.h b/libs/gst/controller/gstinterpolationcontrolsource.h index 233909d..42d2e76 100644 --- a/libs/gst/controller/gstinterpolationcontrolsource.h +++ b/libs/gst/controller/gstinterpolationcontrolsource.h @@ -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); diff --git a/libs/gst/controller/gstlfocontrolsource.h b/libs/gst/controller/gstlfocontrolsource.h index 18bb8cc..b74a2a3 100644 --- a/libs/gst/controller/gstlfocontrolsource.h +++ b/libs/gst/controller/gstlfocontrolsource.h @@ -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 diff --git a/libs/gst/dataprotocol/dataprotocol.h b/libs/gst/dataprotocol/dataprotocol.h index 4e90e2e..118df65 100644 --- a/libs/gst/dataprotocol/dataprotocol.h +++ b/libs/gst/dataprotocol/dataprotocol.h @@ -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 ()) /** -- 2.7.4