diff options
author | Edgard Lima <edgard.lima@indt.org.br> | 2006-05-19 18:31:25 +0000 |
---|---|---|
committer | Edgard Lima <edgard.lima@indt.org.br> | 2006-05-19 18:31:25 +0000 |
commit | 53ff9bc18a3b1df2b3cdc388841b662cabc93791 (patch) | |
tree | 1fbff211a10de076e82c12ae7a84b6c8412b2ad1 /sys/v4l2/gstv4l2object.c | |
parent | c21a6c3ece791df0aef2682617623150c30e23a0 (diff) | |
download | gst-plugins-bad-53ff9bc18a3b1df2b3cdc388841b662cabc93791.tar.gz gst-plugins-bad-53ff9bc18a3b1df2b3cdc388841b662cabc93791.tar.bz2 gst-plugins-bad-53ff9bc18a3b1df2b3cdc388841b662cabc93791.zip |
Some clean-ups requested by wingo in bug #338818.
Original commit message from CVS:
Some clean-ups requested by wingo in bug #338818.
Diffstat (limited to 'sys/v4l2/gstv4l2object.c')
-rw-r--r-- | sys/v4l2/gstv4l2object.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/v4l2/gstv4l2object.c b/sys/v4l2/gstv4l2object.c index e7485ebf..24120dd0 100644 --- a/sys/v4l2/gstv4l2object.c +++ b/sys/v4l2/gstv4l2object.c @@ -234,7 +234,7 @@ gst_v4l2_device_get_type (void) } void -gst_v4l2object_install_properties_helper (GObjectClass * gobject_class) +gst_v4l2_object_install_properties_helper (GObjectClass * gobject_class) { g_object_class_install_property @@ -269,7 +269,7 @@ gst_v4l2object_install_properties_helper (GObjectClass * gobject_class) } GstV4l2Object * -gst_v4l2object_new (GstElement * element, +gst_v4l2_object_new (GstElement * element, GstV4l2GetInOutFunction get_in_out_func, GstV4l2SetInOutFunction set_in_out_func, GstV4l2UpdateFpsFunction update_fps_func) @@ -304,7 +304,7 @@ gst_v4l2object_new (GstElement * element, void -gst_v4l2object_destroy (GstV4l2Object ** v4l2object) +gst_v4l2_object_destroy (GstV4l2Object ** v4l2object) { if (*v4l2object) { @@ -323,7 +323,7 @@ gst_v4l2object_destroy (GstV4l2Object ** v4l2object) gboolean -gst_v4l2object_set_property_helper (GstV4l2Object * v4l2object, +gst_v4l2_object_set_property_helper (GstV4l2Object * v4l2object, guint prop_id, const GValue * value, GParamSpec * pspec) { @@ -395,7 +395,7 @@ gst_v4l2object_set_property_helper (GstV4l2Object * v4l2object, gboolean -gst_v4l2object_get_property_helper (GstV4l2Object * v4l2object, +gst_v4l2_object_get_property_helper (GstV4l2Object * v4l2object, guint prop_id, GValue * value, GParamSpec * pspec) { switch (prop_id) { @@ -495,7 +495,7 @@ gst_v4l2_set_defaults (GstV4l2Object * v4l2object) gboolean -gst_v4l2object_start (GstV4l2Object * v4l2object) +gst_v4l2_object_start (GstV4l2Object * v4l2object) { if (gst_v4l2_open (v4l2object)) gst_v4l2_set_defaults (v4l2object); @@ -511,7 +511,7 @@ gst_v4l2object_start (GstV4l2Object * v4l2object) } gboolean -gst_v4l2object_stop (GstV4l2Object * v4l2object) +gst_v4l2_object_stop (GstV4l2Object * v4l2object) { #ifdef HAVE_XVIDEO |