summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--gst/switch/gstswitch.c9
2 files changed, 10 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 2bc15077..36288f10 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2004-02-15 Julien MOUTTE <julien@moutte.net>
+ * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
+ correct data refcounting.
+
+2004-02-15 Julien MOUTTE <julien@moutte.net>
+
* gst/switch/gstswitch.c: (gst_switch_change_state),
(gst_switch_class_init): Cleaning the sinkpads correctly on state
change, mostly the EOS flag.
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;
}
}