/**
*
*/
package video.lib;
/**
* @author yuezhu
*
*/
public class Constants {
public static final int BUFFER_SIZE = 2048;
public static final long CONNECT_TIMEOUT = 30 * 1000L;
public static final String CLIENT_LISTENING_INTERFACE = "";
public static final int CLIENT_LISTENING_PORT = 15000;
public static final String CHARSET = "UTF-8";
public static final String STREAMING_SERVER_HOSTNAME = "localhost";
public static final int STREAMING_SERVER_PORT = 8554;
public static final String SERVER_HOSTNAME = "localhost";
public static final int SERVER_RTSP_LISTENING_PORT = 59000;
public static final int SERVER_RTP_LISTENING_PORT = 59001;
public static final int SERVER_RTCP_LISTENING_PORT = 59002;
public static final int SERVER_RTP_PORT = 61000;
public static final int SERVER_RTCP_PORT = 61001;
public static final int CLIENT_RTP_PORT = 16970;
public static final int CLIENT_RTCP_PORT = 16971;
}