Uses of Class
jlibrtp.DataFrame

Packages that use DataFrame
jlibrtp The jlibrtp package contains the core classes of jlibrtp. 
jlibrtpDemos The jlibrtpDemos package contains simple demonstration programs for testing jlibrtp and to provide some examples of how the library can be used. 
validateCcrtp ValidateCcrtp is a small package to test compatibility with ccRTP, a popular C++ implementation of the RTP protocol. 
 

Uses of DataFrame in jlibrtp
 

Methods in jlibrtp that return DataFrame
private  DataFrame PktBuffer.bufferedPopFrame()
          Only returns if the buffer is full, i.e.
protected  DataFrame PktBuffer.popOldestFrame()
          Checks the oldest frame, if there is one, sees whether it is complete.
private  DataFrame PktBuffer.unbufferedPopFrame()
          Will return the oldest frame without checking whether it is in the right order, or whether we should wate for late arrivals.
 

Methods in jlibrtp with parameters of type DataFrame
 void RTPAppIntf.receiveData(DataFrame frame, Participant participant)
          The callback method through which the application will receive data from jlibrtp.
 

Uses of DataFrame in jlibrtpDemos
 

Methods in jlibrtpDemos with parameters of type DataFrame
 void XmlPacketRecorder.receiveData(DataFrame frame, Participant part)
          RTP
 void SoundReceiverDemo.receiveData(DataFrame frame, Participant p)
           
 void SoundSenderDemo.receiveData(DataFrame dummy1, Participant dummy2)
           
 void XmlPacketPlayer.receiveData(DataFrame frame, Participant participant)
          Dummy methods for the RTPAppinterface
 

Uses of DataFrame in validateCcrtp
 

Methods in validateCcrtp with parameters of type DataFrame
 void CCRTPReceiver.receiveData(DataFrame frame, Participant p)
           
 void CCRTPSender.receiveData(DataFrame frame, Participant p)