summaryrefslogtreecommitdiffstats
path: root/gst/valve
diff options
context:
space:
mode:
authorOlivier Crete <olivier.crete@collabora.co.uk>2008-04-09 16:32:21 +0000
committerEdward Hervey <bilboed@bilboed.com>2009-02-17 19:29:59 +0100
commitc7d7a158cbf15b5b5a6e9bc126676e510edccc47 (patch)
treed3ccdce646fb7c3faba1ca0268d1c012e7d2eac6 /gst/valve
parent689114034021b1d64e8fc54dad1f07d1b24f3f0c (diff)
downloadgst-plugins-bad-c7d7a158cbf15b5b5a6e9bc126676e510edccc47.tar.gz
gst-plugins-bad-c7d7a158cbf15b5b5a6e9bc126676e510edccc47.tar.bz2
gst-plugins-bad-c7d7a158cbf15b5b5a6e9bc126676e510edccc47.zip
[MOVED FROM GST-P-FARSIGHT] Remove unused dispose method in valve
20080409163221-3e2dc-92ccb2db874e46e0d92c15520577c1be0e2bc617.gz
Diffstat (limited to 'gst/valve')
-rw-r--r--gst/valve/gstvalve.c12
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,