camerabin2: Fix set/get property function names

Add more consistency to the function names by using
gst_camera_bin as the other functions.
This commit is contained in:
Thiago Santos 2010-11-30 20:15:47 -03:00
parent cb915196e2
commit 5b3deecab9

View File

@ -115,9 +115,9 @@ gst_camera_bin_get_type (void)
}
/* GObject class functions */
static void gst_camerabin_set_property (GObject * object, guint prop_id,
static void gst_camera_bin_set_property (GObject * object, guint prop_id,
const GValue * value, GParamSpec * pspec);
static void gst_camerabin_get_property (GObject * object, guint prop_id,
static void gst_camera_bin_get_property (GObject * object, guint prop_id,
GValue * value, GParamSpec * pspec);
/* Element class functions */
@ -214,8 +214,8 @@ gst_camera_bin_class_init (GstCameraBinClass * klass)
object_class->dispose = gst_camera_bin_dispose;
object_class->finalize = gst_camera_bin_finalize;
object_class->set_property = gst_camerabin_set_property;
object_class->get_property = gst_camerabin_get_property;
object_class->set_property = gst_camera_bin_set_property;
object_class->get_property = gst_camera_bin_get_property;
element_class->change_state = GST_DEBUG_FUNCPTR (gst_camera_bin_change_state);
@ -367,7 +367,7 @@ gst_camera_bin_change_state (GstElement * element, GstStateChange trans)
}
static void
gst_camerabin_set_property (GObject * object, guint prop_id,
gst_camera_bin_set_property (GObject * object, guint prop_id,
const GValue * value, GParamSpec * pspec)
{
GstCameraBin *camera = GST_CAMERA_BIN_CAST (object);
@ -383,7 +383,7 @@ gst_camerabin_set_property (GObject * object, guint prop_id,
}
static void
gst_camerabin_get_property (GObject * object, guint prop_id,
gst_camera_bin_get_property (GObject * object, guint prop_id,
GValue * value, GParamSpec * pspec)
{
GstCameraBin *camera = GST_CAMERA_BIN_CAST (object);