fsvalve: Remove unused dispose method in valve
authorOlivier Crete <olivier.crete@collabora.co.uk>
Wed, 9 Apr 2008 16:32:21 +0000 (16:32 +0000)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Fri, 31 Dec 2010 00:51:10 +0000 (00:51 +0000)
20080409163221-3e2dc-92ccb2db874e46e0d92c15520577c1be0e2bc617.gz

plugins/elements/gstvalve.c

index a730ca1..c0f4163 100644 (file)
@@ -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,