Here&#39;s what I got when using --gst-debug:<br><br>....<br>0:00:40.041460639 29100  0x91ac738 DEBUG           rtph264depay gstrtph264depay.c:560:gst_rtp_h264_depay_process:&lt;rtph264depay0&gt; queueing 1386 bytes<br>0:00:40.041587089 29100  0x91ac738 DEBUG           rtph264depay gstrtph264depay.c:404:gst_rtp_h264_depay_process:&lt;rtph264depay0&gt; receiving 1132 bytes<br>
0:00:40.041702807 29100  0x91ac738 DEBUG           rtph264depay gstrtph264depay.c:421:gst_rtp_h264_depay_process:&lt;rtph264depay0&gt; NRI 2, Type 28<br>0:00:40.041814445 29100  0x91ac738 DEBUG           rtph264depay gstrtph264depay.c:519:gst_rtp_h264_depay_process:&lt;rtph264depay0&gt; S 0, E 1<br>
0:00:40.041929402 29100  0x91ac738 DEBUG           rtph264depay gstrtph264depay.c:560:gst_rtp_h264_depay_process:&lt;rtph264depay0&gt; queueing 1130 bytes<br>0:00:40.042042693 29100  0x91ac738 DEBUG           rtph264depay gstrtph264depay.c:568:gst_rtp_h264_depay_process:&lt;rtph264depay0&gt; output 1130 bytes<br>
0:00:40.042204307 29100  0x91ac738 DEBUG           rtph264depay gstrtph264depay.c:404:gst_rtp_h264_depay_process:&lt;rtph264depay0&gt; receiving 2 bytes<br>0:00:40.042320160 29100  0x91ac738 DEBUG           rtph264depay gstrtph264depay.c:421:gst_rtp_h264_depay_process:&lt;rtph264depay0&gt; NRI 0, Type 9<br>
....<br><br>I haven&#39;t found anything like &#39;codec_data buffer is pushed&#39;.<br><br>I had tried to set  caps like this:<br>gst-launch rtsp://localhost:8554/h264 ! rtph264depay  ! video/x-h264 ! ffdec_h264 ! ffmpegcolorspace ! autovideosink<br>
but still got this message:<br>...<br>0:00:03.521963200 29480  0x94ef290 ERROR                 ffmpeg :0:: number of reference frames exceeds max (probably corrupt input), discarding one<br>...<br><br>Tried to set byte-stream=false to rtph264depay, I got this message:<br>
0:00:03.536385694 29480  0x94ef290 ERROR                 ffmpeg :0:: no frame!<br><br>So do you know if is there anything wrong ?<br><br><div class="gmail_quote">2009/10/13 Arnout Vandecappelle <span dir="ltr">&lt;<a href="mailto:arnout@mind.be">arnout@mind.be</a>&gt;</span><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="im">On Tuesday 13 Oct 2009 10:03:44 Thành Trung Nguyễn wrote:<br>
&gt; Here&#39;s what I got from gst-launch -v on rtph264depay elements:<br>
&gt;<br>
&gt; /GstPipeline:pipeline0/GstRtpH264Depay:rtph264depay0.GstPad:src: caps =<br>
&gt; video/x-h264<br>
&gt;<br>
&gt; /GstPipeline:pipeline0/GstRtpH264Depay:rtph264depay0.GstPad:sink: caps =<br>
&gt; application/x-rtp, media=(string)video, payload=(int)96,<br>
&gt; clock-rate=(int)90000, encoding-name=(string)H264,<br>
&gt; profile-level-id=(string)4d401f,<br>
&gt; sprop-parameter-sets=(string)\&quot;Z01AH5JUAoAt2AiAAAADAIAAAB5HjBlQ\\,aO48gA\\=<br>
&gt; \\=\&quot;, a-tool=(string)GStreamer, a-type=(string)broadcast,<br>
&gt; clock-base=(guint)2373374152, seqnum-base=(guint)13660,<br>
&gt; npt-start=(guint64)0, play-speed=(double)1, play-scale=(double)1<br>
&gt;<br>
&gt; I&#39;m not sure but I think video/x-h264 is the codec data you said, isn&#39;t it<br>
&gt;  ?<br>
<br>
</div> The &#39;sprop-parameter-sets&#39; is the config string I mentioned.  The &#39;video/x-<br>
h264&#39; should have codec data as a parameter, or it may send the codec-data as<br>
an in-stream buffer (and now I seem to remember that&#39;s actually the default).<br>
But since the sprop-parameter-sets are there, the codec data will be there as<br>
well.<br>
<br>
 Run with --gst-debug=rtph264depay:5,ffdec:3 to get a bit (well, actually a<br>
lot) more detail.  If that mentions that the codec_data buffer is pushed, then<br>
something else is wrong...<br>
<br>
 Maybe the problem is that the codec data gets discarded again because the<br>
discontinuity that comes from the errors of your first two frames.  That is<br>
solved by setting it as caps instead of pushing it as a buffer.  Add the<br>
&#39;byte-stream=false&#39; property to rtph264depay.<br>
<br>
 Regards,<br>
 Arnout<br>
<br>
 PS Please send replies to the list, other people may benefit from these<br>
messages.<br>
<div><div></div><div class="h5"><br>
&gt;<br>
&gt; 2009/10/13 Arnout Vandecappelle &lt;<a href="mailto:arnout@mind.be">arnout@mind.be</a>&gt;<br>
&gt;<br>
&gt; &gt; On Monday 12 Oct 2009 13:18:01 Thành Trung Nguyễn wrote:<br>
&gt; &gt; &gt; Hi,<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; I&#39;m working on a project that use gst-rtsp-server as the streaming<br>
&gt; &gt; &gt; server and got the following message on the client with h264 and mpeg4<br>
&gt; &gt; &gt; video format:<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; ffmpeg :0:: warning: first frame is no keyframe<br>
&gt; &gt; &gt; ffmpeg :0:: Missing reference picture<br>
&gt; &gt; &gt; ffmpeg :0:: number of reference frames exceeds max (probably corrupt<br>
&gt; &gt; &gt;  input), discarding one<br>
&gt; &gt; &gt; ffmpeg :0:: non-existing PPS referenced<br>
&gt; &gt; &gt; ffmpeg :0:: sps_id out of range<br>
&gt; &gt;<br>
&gt; &gt;  This sounds like you&#39;re missing codec_data for your decoder.  Can you<br>
&gt; &gt; check<br>
&gt; &gt; on your client which caps are set on the elements?  You typically have a<br>
&gt; &gt; config string on rtph264depay&#39;s sink pad and a codec-data buffer on its<br>
&gt; &gt; src pad.<br>
&gt; &gt;<br>
&gt; &gt;  If your rtsp server is not sending out the codec data (e.g. because you<br>
&gt; &gt; start<br>
&gt; &gt; in the middle of a stream), then you have a problem :-)<br>
&gt; &gt;<br>
&gt; &gt;  Regards,<br>
&gt; &gt;  Arnout<br>
&gt; &gt;<br>
&gt; &gt; --<br>
&gt; &gt; Arnout Vandecappelle                               arnout at mind be<br>
&gt; &gt; Senior Embedded Software Architect                 +32-16-286540<br>
&gt; &gt; Essensium/Mind                                     <a href="http://www.mind.be" target="_blank">http://www.mind.be</a><br>
&gt; &gt; G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR<br>
&gt; &gt; Leuven<br>
&gt; &gt; LinkedIn profile: <a href="http://www.linkedin.com/in/arnoutvandecappelle" target="_blank">http://www.linkedin.com/in/arnoutvandecappelle</a><br>
&gt; &gt; GPG fingerprint:  D206 D44B 5155 DF98 550D  3F2A 2213 88AA A1C7 C933<br>
&gt;<br>
<br>
--<br>
Arnout Vandecappelle                               arnout at mind be<br>
Senior Embedded Software Architect                 +32-16-286540<br>
Essensium/Mind                                     <a href="http://www.mind.be" target="_blank">http://www.mind.be</a><br>
G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR Leuven<br>
LinkedIn profile: <a href="http://www.linkedin.com/in/arnoutvandecappelle" target="_blank">http://www.linkedin.com/in/arnoutvandecappelle</a><br>
GPG fingerprint:  D206 D44B 5155 DF98 550D  3F2A 2213 88AA A1C7 C933<br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>Cheers !<br><br>trungnt<br>