javax.media.rtp.GlobalReceptionStats Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fmj Show documentation
Show all versions of fmj Show documentation
Freedom for Media in Java
package javax.media.rtp;
/**
* Standard JMF class -- see this class in the JMF Javadoc. Complete.
*
* @author Ken Larson
*
*/
public interface GlobalReceptionStats
{
public int getBadRTCPPkts();
public int getBadRTPkts();
public int getBytesRecd();
public int getLocalColls();
public int getMalformedBye();
public int getMalformedRR();
public int getMalformedSDES();
public int getMalformedSR();
public int getPacketsLooped();
public int getPacketsRecd();
public int getRemoteColls();
public int getRTCPRecd();
public int getSRRecd();
public int getTransmitFailed();
public int getUnknownTypes();
}