<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
</head>
<body class='hmmessage'>
@Sandeep Prakash<br>Yes, that was the problem. And it was pretty stupid too.<br><br>@thiago<br>You were right, it works fine in my example code. So I definetely do something wrong in my code. I will have a closer look into it. For anyone else whose interested here is a link to example code that plays a DivX/XviD-mp3 AVI file with external SRT subs(compile as C++ source)--&gt;http://pastebin.com/vTJh7FcM<br><br>&gt; Date: Tue, 28 Sep 2010 21:49:53 -0700<br>&gt; From: 123sandy@gmail.com<br>&gt; To: gstreamer-devel@lists.sourceforge.net<br>&gt; Subject: Re: [gst-devel] Pipeline with multiple filesources is stalled.<br>&gt; <br>&gt; <br>&gt; Hi <br>&gt; <br>&gt; One problem I found in the pad-added callback is:<br>&gt; <br>&gt; /*plug a queue in the pad and decided what to do according to the mimetype*/<br>&gt;         queue = gst_element_factory_make("queue", NULL);<br>&gt;         sinkpad = gst_element_get_static_pad(queue, "sink");<br>&gt;         gst_pad_link(pad, sinkpad);<br>&gt;         gst_object_unref(sinkpad);<br>&gt; <br>&gt; queue element has to be part of the bin for you to do a gst_pad_link. Here<br>&gt; gst_pad_link will<br>&gt; fail.<br>&gt; <br>&gt; /*plug a queue in the pad and decided what to do according to the mimetype*/<br>&gt;         queue = gst_element_factory_make("queue", NULL);<br>&gt;         gst_bin_add(GST_BIN(pipeline), queue);<br>&gt;         sinkpad = gst_element_get_static_pad(queue, "sink");<br>&gt;         gst_pad_link(pad, sinkpad);<br>&gt;         gst_object_unref(sinkpad);<br>&gt; <br>&gt; Next time better check all the return values.<br>&gt; <br>&gt; Regards,<br>&gt; Sandeep Prakash<br>&gt; http://sandeepprakash.homeip.net<br>&gt; -- <br>&gt; View this message in context: http://gstreamer-devel.966125.n4.nabble.com/Pipeline-with-multiple-filesources-is-stalled-tp2714279p2718318.html<br>&gt; Sent from the GStreamer-devel mailing list archive at Nabble.com.<br>&gt; <br>&gt; ------------------------------------------------------------------------------<br>&gt; Start uncovering the many advantages of virtual appliances<br>&gt; and start using them to simplify application deployment and<br>&gt; accelerate your shift to cloud computing.<br>&gt; http://p.sf.net/sfu/novell-sfdev2dev<br>&gt; _______________________________________________<br>&gt; gstreamer-devel mailing list<br>&gt; gstreamer-devel@lists.sourceforge.net<br>&gt; https://lists.sourceforge.net/lists/listinfo/gstreamer-devel<br>                                               </body>
</html>