Hello,<br><br>I have this pipeline I add bin B dynamicly<br><br>|-----------------------------|<br>|bin A                      |<br>|  source -&gt; queue -&gt;|\<br>|-----------------------------| \<br>                                  -&gt; Adder -&gt; queue -&gt; sink<br>
|-----------------------------| /<br>|bin B                      |/<br>|  source -&gt; queue -&gt;|<br>|-----------------------------|<br><br>What I want to be able to do is pause &quot;bin B&quot;, play it etc (without affecting &quot;bin A&quot;)<br>
 <br>I try gst_element_set_state (binB, GST_STATE_PAUSED); but this don&#39;t work<br><br>I try :<br>pad = gst_element_get_static_pad(binB, &quot;src&quot;);<br>gst_pad_set_blocked(pad,TRUE);<br>But this block the pipeline<br>
<br><br>Does someone know how to do this or where can I find an example ?<br><br><br>Best regards<br>