Hi,<br><br><div class="gmail_quote">On Wed, Nov 10, 2010 at 10:34 AM, guodecn <span dir="ltr">&lt;<a href="mailto:guo.dehua@zxelec.com">guo.dehua@zxelec.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<br>
Hi,sudarshan bisht, Marco Ballesio,<br>
Thanks for your reply.<br>
Follow sudarshan bisht&#39;s advice, I have add the h264parse plugin between<br>
h264depay and decodebin.<br>
Follow Marco Ballesio&#39;s advice ,I have delete the udpsink&#39;s property<br>
sync=false, and delete the redundant caps:ssrc clock-base and sequm-base.<br>
As do above, the same error is still exist.<br>
<div class="im"><br>
server:<br>
gst-launch-0.10 -v videotestsrc ! x264enc ! rtph264pay ! udpsink<br>
host=127.0.0.1 port=40000<br>
<br>
</div><div class="im">client:<br>
gst-launch-0.10 -v udpsrc<br>
caps=&quot;application/x-rtp,media=(string)video,clock-rate=(int)90000,encoding-name=(string)H264,payload=(int)96&quot;<br>
</div>port=40000 ! rtph264depay ! h264parse ! decodebin ! xvimagesink<br></blockquote><div><br>this is better:<br><br>gst-launch-0.10 -v udpsrc port=40000 ! &quot;application/x-rtp,media=(string)video,clock-rate=(int)90000,encoding-name=(string)H264,payload=(int)96&quot; ! rtph264depay ! decodebin ! xvimagesink<br>
<br>if you have a depayloader, you don&#39;t need the parser. However, the issue was the place you&#39;ve set the &quot;port&quot; property.<br><br>btw unless you have a light-speed machine you&#39;ll see frame drops. In such a case, relaxing the buffers lateness constraints on the xvimagesinksync will help (max-lateness=10000000000). I don&#39;t suggest you to set sync=false there if one day you&#39;ll want to stream audio as well.<br>
<br>Another note: you don&#39;t need to use a decodebin in the receiving pipeline. Something like ffdec_h264 will be enough.<br><br>Regards<br> </div><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

<br>
attach is the error message.<br>
<a href="http://gstreamer-devel.966125.n4.nabble.com/file/n3035669/log.txt" target="_blank">http://gstreamer-devel.966125.n4.nabble.com/file/n3035669/log.txt</a> log.txt<br>
<font color="#888888">--<br>
View this message in context: <a href="http://gstreamer-devel.966125.n4.nabble.com/rtp-transmit-occur-not-negotiated-4-error-tp3035468p3035669.html" target="_blank">http://gstreamer-devel.966125.n4.nabble.com/rtp-transmit-occur-not-negotiated-4-error-tp3035468p3035669.html</a><br>

</font><div><div></div><div class="h5">Sent from the GStreamer-devel mailing list archive at Nabble.com.<br>
<br>
------------------------------------------------------------------------------<br>
The Next 800 Companies to Lead America&#39;s Growth: New Video Whitepaper<br>
David G. Thomson, author of the best-selling book &quot;Blueprint to a<br>
Billion&quot; shares his insights and actions to help propel your<br>
business during the next growth cycle. Listen Now!<br>
<a href="http://p.sf.net/sfu/SAP-dev2dev" target="_blank">http://p.sf.net/sfu/SAP-dev2dev</a><br>
_______________________________________________<br>
gstreamer-devel mailing list<br>
<a href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a><br>
<a href="https://lists.sourceforge.net/lists/listinfo/gstreamer-devel" target="_blank">https://lists.sourceforge.net/lists/listinfo/gstreamer-devel</a><br>
</div></div></blockquote></div><br>