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

net.sf.fmj.media.datasink.rtp.ParsedRTPUrlElement Maven / Gradle / Ivy

There is a newer version: 1.0.2-jitsi
Show newest version
package net.sf.fmj.media.datasink.rtp;

/**
 * Single element of a ParsedRTPUrl.
 *
 * @author Ken Larson
 *
 */
public class ParsedRTPUrlElement
{
    // types:
    public static final String AUDIO = "audio";
    public static final String VIDEO = "video";

    public String host;
    public int port;
    public String type;
    public int ttl;

    @Override
    public String toString()
    {
        return host + ":" + port + "/" + type + "/" + ttl;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy