diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2006-10-06 15:49:39 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2006-10-06 15:49:39 +0000 |
commit | 09624a589485472bc3ca5d1ca925576e66f670dd (patch) | |
tree | 5648f407d41ce63315866456e6a5ab0c80361b04 /gst/qtdemux | |
parent | 91447f842899c60cb9ddcd61c48075f3608171d7 (diff) | |
download | gst-plugins-bad-09624a589485472bc3ca5d1ca925576e66f670dd.tar.gz gst-plugins-bad-09624a589485472bc3ca5d1ca925576e66f670dd.tar.bz2 gst-plugins-bad-09624a589485472bc3ca5d1ca925576e66f670dd.zip |
ext/faad/gstfaad.c: Some cleanups.
Original commit message from CVS:
* ext/faad/gstfaad.c: (gst_faad_setcaps), (gst_faad_chain),
(gst_faad_close_decoder):
Some cleanups.
Added some more debugging.
Don't ever ignore unlinked, we're not a demuxer.
* gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
Activate pad before adding it to the element.
Diffstat (limited to 'gst/qtdemux')
-rw-r--r-- | gst/qtdemux/qtdemux.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index 6ec89eb0..9357d6ae 100644 --- a/gst/qtdemux/qtdemux.c +++ b/gst/qtdemux/qtdemux.c @@ -1905,6 +1905,7 @@ gst_qtdemux_add_stream (GstQTDemux * qtdemux, GST_DEBUG_OBJECT (qtdemux, "adding pad %s %p to qtdemux %p", GST_OBJECT_NAME (stream->pad), stream->pad, qtdemux); + gst_pad_set_active (stream->pad, TRUE); gst_element_add_pad (GST_ELEMENT (qtdemux), stream->pad); if (list) { gst_element_found_tags_for_pad (GST_ELEMENT (qtdemux), stream->pad, list); |