diff options
Diffstat (limited to 'gst/valve')
-rw-r--r-- | gst/valve/gstvalve.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gst/valve/gstvalve.c b/gst/valve/gstvalve.c index a730ca1a..c0f41632 100644 --- a/gst/valve/gstvalve.c +++ b/gst/valve/gstvalve.c @@ -72,7 +72,6 @@ static void gst_valve_set_property (GObject *object, guint prop_id, const GValue * value, GParamSpec * pspec); static void gst_valve_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec); -static void gst_valve_dispose (GObject *object); static GstFlowReturn gst_valve_transform_ip (GstBaseTransform *trans, GstBuffer *buf); @@ -115,8 +114,6 @@ gst_valve_class_init (GstValveClass *klass) gobject_class = (GObjectClass *) klass; gstbasetransform_class = (GstBaseTransformClass *) klass; - gobject_class->dispose = GST_DEBUG_FUNCPTR (gst_valve_dispose); - gobject_class->set_property = GST_DEBUG_FUNCPTR (gst_valve_set_property); gobject_class->get_property = GST_DEBUG_FUNCPTR (gst_valve_get_property); @@ -159,15 +156,6 @@ gst_valve_init (GstValve *valve, GstValveClass *klass) } -static void -gst_valve_dispose (GObject *object) -{ - GstValve *valve = NULL; - valve = GST_VALVE (valve); - - G_OBJECT_CLASS (parent_class)->dispose (object); -} - static void gst_valve_set_property (GObject *object, |