mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 07:16:55 +00:00
fsvalve: Remove unused dispose method in valve
20080409163221-3e2dc-92ccb2db874e46e0d92c15520577c1be0e2bc617.gz
This commit is contained in:
parent
e384295df0
commit
2b612137d7
1 changed files with 0 additions and 12 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue