<div dir="ltr">Hi Sebastian <div>thanks for your hint.</div><div>As you suggested I got the rtspBin element using:</div><div> <span class="">GstElement</span><span class=""> * rtspBin = gst_bin_get_by_name(</span><span class="">GST_BIN</span><span class="">(pipeline), "rtspsrc0");</span></div><div><span class="">AFAIK the name is </span> "rtspsrc0" and changes everytime I create a pipeline, it impossible for me detect the name because the second time the name is  "rtspsrc1"  the third  "rtspsrc2"...</div><div>Which is the correct behaviour to detect the name?</div><div><span class=""><br></span></div><div><span class="">Or.. Can I get the rtspBin using </span>gst_bin_get_by_interface?</div><div>In this case I can find files to include to be defined  GST_TYPE_RTSPSRC (I'm using GStreamer library 1.6.1 under iOS)</div><div><span class=""><br></span></div><div><span class="">This is my code.</span></div><div><span class="">GstElement</span><span class=""> * rtspBin = gst_bin_get_by_interface(</span><span class="">GST_BIN</span><span class="">(pipeline), GST_TYPE_RTSPSRC);</span><br></div><div><span class=""><br></span></div><div><span class="">Thanks for your time</span></div><div><span class="">Elio</span></div></div><div class="gmail_extra"><br><div class="gmail_quote">2016-03-14 13:36 GMT+01:00 Sebastian Dröge <span dir="ltr"><<a href="mailto:sebastian@centricular.com" target="_blank">sebastian@centricular.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Mo, 2016-03-14 at 12:33 +0100, elio francesconi wrote:<br>
> Hi all,<br>
> I need to add a signal to my pipeline... <br>
> This is my pipeline:<br>
> pipeline = gst_parse_launch("rtspsrc<br>
> location=rtsp://<ipaddress>/<url> latency=10 !  rtph264depay !<br>
> avdec_h264   ! autovideosink", &error);<br>
> and I need to implement the callback for "on-sdp" signal in grtsp<br>
> element.<br>
> Someone can explain me how do that? Thanks a lot<br>
<br>
</span>Give a name to rtspsrc by setting the name property, and then use<br>
gst_bin_get_by_name() on the pipeline to get a pointer to the rtspsrc<br>
instance. Then you can connect to the signal.<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
Sebastian Dröge, Centricular Ltd · <a href="http://www.centricular.com" rel="noreferrer" target="_blank">http://www.centricular.com</a><br>
<br>
</font></span><br>_______________________________________________<br>
gstreamer-devel mailing list<br>
<a href="mailto:gstreamer-devel@lists.freedesktop.org">gstreamer-devel@lists.freedesktop.org</a><br>
<a href="https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel" rel="noreferrer" target="_blank">https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel</a><br>
<br></blockquote></div><br></div>