From a179e2fe8cb1063c61fbd63999116a751da0cf17 Mon Sep 17 00:00:00 2001 From: Julien Moutte Date: Sun, 15 Feb 2004 18:20:15 +0000 Subject: gst/switch/gstswitch.c: More fixes for correct data refcounting. Original commit message from CVS: 2004-02-15 Julien MOUTTE * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for correct data refcounting. --- gst/switch/gstswitch.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'gst') diff --git a/gst/switch/gstswitch.c b/gst/switch/gstswitch.c index 1b1c88a4..e57508bc 100644 --- a/gst/switch/gstswitch.c +++ b/gst/switch/gstswitch.c @@ -241,16 +241,18 @@ gst_switch_loop (GstElement *element) switchpad = g_list_nth_data (gstswitch->sinkpads, gstswitch->active_sinkpad); if (switchpad && switchpad->data) { + GstData *data = switchpad->data; /* Loose our reference to that data */ gst_data_unref (switchpad->data); + switchpad->data = NULL; GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, gstswitch, "using data from active pad %p", switchpad->sinkpad); - if (GST_IS_EVENT (switchpad->data)) { - GstEvent *event = GST_EVENT (switchpad->data); + if (GST_IS_EVENT (data)) { + GstEvent *event = GST_EVENT (data); GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, gstswitch, "handling event from active pad %p", switchpad->sinkpad); @@ -262,12 +264,11 @@ gst_switch_loop (GstElement *element) GST_CAT_LOG_OBJECT (GST_CAT_DATAFLOW, gstswitch, "pushing data from active pad %p to %p", switchpad->sinkpad, gstswitch->srcpad); - gst_pad_push (gstswitch->srcpad, switchpad->data); + gst_pad_push (gstswitch->srcpad, data); } /* Mark this data as forwarded so that it won't get unrefed on next poll */ switchpad->forwarded = TRUE; - switchpad->data = NULL; } } -- cgit v1.2.1