[MOVED FROM GST-P-FARSIGHT] Remove unused dispose method in valve

20080409163221-3e2dc-92ccb2db874e46e0d92c15520577c1be0e2bc617.gz
This commit is contained in:
Olivier Crete 2008-04-09 16:32:21 +00:00 committed by Edward Hervey
parent 6891140340
commit c7d7a158cb

View 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,