diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2006-10-11 13:24:42 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2006-10-11 13:24:42 +0000 |
commit | a91177414c6c798ee921faf575ee15a509e77488 (patch) | |
tree | eb4dc78c76f4687b4b650cdf775323a7c134c6dc /tests | |
parent | 734243efa288947fa6296f2917550b8e85bbb50f (diff) |
gst/: Activate pad before adding it to the already-running element.
Original commit message from CVS:
* gst/apetag/gsttagdemux.c: (gst_tag_demux_add_srcpad):
* gst/icydemux/gsticydemux.c: (gst_icydemux_add_srcpad):
* gst/id3demux/gstid3demux.c: (gst_id3demux_add_srcpad):
Activate pad before adding it to the already-running element.
* tests/check/elements/icydemux.c: (icydemux_found_pad):
Activate newly-created pad too.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/check/elements/icydemux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/check/elements/icydemux.c b/tests/check/elements/icydemux.c index 10504e4c..8a6e9101 100644 --- a/tests/check/elements/icydemux.c +++ b/tests/check/elements/icydemux.c @@ -101,8 +101,8 @@ icydemux_found_pad (GstElement * src, GstPad * pad, gpointer data) fail_unless (gst_pad_link (srcpad, sinkpad) == GST_PAD_LINK_OK, "Failed to link pads"); gst_object_unref (srcpad); - ASSERT_OBJECT_REFCOUNT (srcpad, "srcpad", 2); + gst_pad_set_active (sinkpad, TRUE); } static GstElement * |