<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head><meta http-equiv=Content-Type content="text/html; charset=gb2312"><meta name=Generator content="Microsoft Word 14 (filtered medium)"><style><!--
/* Font Definitions */
@font-face
        {font-family:ËÎÌå;
        panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
        {font-family:ËÎÌå;
        panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:"\@ËÎÌå";
        panose-1:2 1 6 0 3 1 1 1 1 1;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:ËÎÌå;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri","sans-serif";}
/* Page Definitions */
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:72.0pt 90.0pt 72.0pt 90.0pt;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]--></head><body lang=ZH-CN link=blue vlink=purple style='text-justify-trim:punctuation'><div class=WordSection1><p class=MsoNormal><span lang=EN-US style='font-size:10.5pt;font-family:"Arial","sans-serif";color:black'> HI ,<br>     I use live555 to setup one rtsp server which provides h264 stream.<br>     In the GetNextVideoFrame I use the following code.<br>void  RecorderSession::GetNextVideoFrame(bool first,char* to,<br>                                unsigned int maxsize,<br>                                unsigned int *framesize,<br>                                unsigned int* fNumTruncatedBytes)<br>{<br>    int size = 0;<br>        static char startcode[]={0x00,0x00,0x00,0x01};<br>        if(first)<br>        {<br>            memcpy(to,startcode,4);<br>            memcpy(to+4,sps.buf,sps.len);<br><br>              memcpy(to+sps.len+4,startcode,4);<br>            memcpy(to+8+sps.len,pps.buf,pps.len);<br><br>            size = pps.len+8+sps.len;<br><br>        }<br>    unsigned int len = 0;<br>    _videoqueue->Get(to+size,&len);<br>    *framesize = len +size;<br>    if(*framesize>maxsize)<br>    {<br>        *fNumTruncatedBytes = (*framesize)-maxsize;<br>    }<br>}<br>As you see, when the first request comes, I fill the sps/pps info to it.<br>But when I use vlc to play it, it also said it's waiting sps/pps.<br>Could you give me some suggestion about it? THKS.<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US style='font-size:10.5pt;font-family:"Calibri","sans-serif"'><o:p> </o:p></span></p></div></body></html>