<HTML><HEAD></HEAD>
<BODY dir=ltr>
<DIV dir=ltr>
<DIV style="FONT-SIZE: 12pt; FONT-FAMILY: 'Calibri'; COLOR: #000000">
<DIV>Hello,</DIV>
<DIV> </DIV>
<DIV>I try on many ways but still something freezing my audio, Its like one 
second audio and two not. I want to be sure I am doing this properly:</DIV>
<DIV> </DIV>
<DIV>I am sending audio as rtsp server, its PCMU/8000, I give it every second 
frame sized: 8000 bytes and send it. In Wireshark I can see that every second I 
am sending those packets so in sending looks ok. I am wondering about 
fPresentationTime can it be a problem? If I think good fDurationTime should be 
one second when packet is 8000 so I tried to set it to 1000000 because of 
microseconds. fPresentationTime:</DIV>
<DIV> </DIV>
<DIV>void AudioOutStreamSource::doGetNextFrame() </DIV>
<DIV>{</DIV>
<DIV>    if( m_buffFrames.Size() > 0 ) {</DIV>
<DIV>        deliverFrame();</DIV>
<DIV>    } </DIV>
<DIV>    else {</DIV>
<DIV>        
gettimeofday(&m_tCurrentTime, NULL);</DIV>
<DIV>    }</DIV>
<DIV>}</DIV>
<DIV> </DIV>
<DIV>in deliverFrame before copying buffer: fPresentationTime = 
m_tCurrentTime;</DIV>
<DIV> </DIV>
<DIV>RtpSink is set as: SimpleRTPSink::createNew(envir(), rtpGroupsock, 0, 8000, 
"audio", "PCMU", 1);</DIV>
<DIV> </DIV>
<DIV>Do you see here any issues?</DIV>
<DIV> </DIV>
<DIV>thanks in advance!</DIV></DIV></DIV></BODY></HTML>