Hello,<br><br>I have this pipeline I add bin B dynamicly<br><br>|-----------------------------|<br>|bin A |<br>| source -> queue ->|\<br>|-----------------------------| \<br> -> Adder -> queue -> sink<br>
|-----------------------------| /<br>|bin B |/<br>| source -> queue ->|<br>|-----------------------------|<br><br>What I want to be able to do is pause "bin B", play it etc (without affecting "bin A")<br>
<br>I try gst_element_set_state (binB, GST_STATE_PAUSED); but this don't work<br><br>I try :<br>pad = gst_element_get_static_pad(binB, "src");<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>