All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.media.rtp.RTPConnector Maven / Gradle / Ivy

There is a newer version: 1.0.2-jitsi
Show newest version
package javax.media.rtp;

import java.io.*;

import javax.media.protocol.*;

/**
 * Standard JMF class -- see this class in the JMF Javadoc. Complete.
 *
 * @author Ken Larson
 *
 */
public interface RTPConnector
{
    public void close();

    public PushSourceStream getControlInputStream() throws IOException;

    public OutputDataStream getControlOutputStream() throws IOException;

    public PushSourceStream getDataInputStream() throws IOException;

    public OutputDataStream getDataOutputStream() throws IOException;

    public int getReceiveBufferSize();

    public double getRTCPBandwidthFraction();

    public double getRTCPSenderBandwidthFraction();

    public int getSendBufferSize();

    public void setReceiveBufferSize(int size) throws IOException;

    public void setSendBufferSize(int size) throws IOException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy