From 3a53d39191e8570a3a7444e491733a35c5b389a6 Mon Sep 17 00:00:00 2001 From: Olivier Crete Date: Thu, 3 Apr 2008 02:03:18 +0000 Subject: [MOVED FROM GST-P-FARSIGHT] Activate pads before adding them in case we're already playing 20080403020318-3e2dc-afd58f992c0b3057221b91034b2fcd91f296e52d.gz --- gst/liveadder/liveadder.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/gst/liveadder/liveadder.c b/gst/liveadder/liveadder.c index ac349b95..a9eae5ea 100644 --- a/gst/liveadder/liveadder.c +++ b/gst/liveadder/liveadder.c @@ -1234,6 +1234,10 @@ gst_live_adder_request_new_pad (GstElement * element, GstPadTemplate * templ, gst_pad_set_chain_function (newpad, gst_live_live_adder_chain); + + if (!gst_pad_set_active (newpad, TRUE)) + goto could_not_activate; + /* takes ownership of the pad */ if (!gst_element_add_pad (GST_ELEMENT (adder), newpad)) goto could_not_add; @@ -1253,6 +1257,14 @@ not_sink: could_not_add: { GST_DEBUG_OBJECT (adder, "could not add pad"); + g_free (padprivate); + gst_object_unref (newpad); + return NULL; + } +could_not_activate: + { + GST_DEBUG_OBJECT (adder, "could not activate new pad"); + g_free (padprivate); gst_object_unref (newpad); return NULL; } -- cgit v1.2.1