123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- package bssoft.stack.sip;
- import java.util.Date;
- public class BSSVideo {
- public static int HNS_SERVICE_NONE = 9;
- public static int HNS_SERVICE_DOOR = 0;
- public static int HNS_SERVICE_LOBBY = 1;
- public static int HNS_SERVICE_GUARD = 2;
- public static int HNS_SERVICE_NEIGHBOR = 3;
- public static int HNS_SERVICE_TELEPHONE = 4;
- public static int HNS_SERVICE_HISTORY = 5;
- public static int HNS_SERVICE_PICTURE = 6;
- public static int HNS_SERVICE_ORIGINATOR_SELECTED = HNS_SERVICE_NEIGHBOR;
- public static int HNS_SERVICE_RECEIVER_SELECTED = HNS_SERVICE_NONE;
- public static String HNS_PREFIX_LOBBY = "HNSLOBBY.";
- public static String HNS_PREFIX_GUARD = "HNSGUARD.";
- public static String HNS_PREFIX_NEIGHBOR = "HNSNEIGHBOR.";
- public static String HNS_POSTFIX_LOBBY = ".HNSLOBBY";
- public static String HNS_POSTFIX_GUARD = ".HNSGUARD";
- public static String HNS_POSTFIX_NEIGHBOR = ".HNSNEIGHBOR";
- public static int codec = 98;
- public static int VIDEO_PTIME = 200;
- public static boolean bInitializeMode = false;
- public static int camera_width = 320;
- public static int camera_height = 240;
- public static int decode_width = 320;
- public static int decode_height = 240;
- public static int yuv_width = 320;
- public static int yuv_height = 240;
- public static int yuv_offset_x = 0;
- public static int yuv_offset_y = 0;
- public static int ENCODE_FRAME_RATE = 30;
- public static int KEY_FRAME_RATE = 15;
- public static int KEY_I_FRAME_INTERVAL = 5;
- public static int KEY_BIT_RATE = 1440000;
- public static boolean bService = false;
- public static boolean bViewme = false;
- public static int displaySizeType = 0;
- public static boolean bSending = false;
- public static boolean bFrameSet = false;
- public static int iFrames = 0;
- public static String remoteIp = null;
- public static int remotePort = 3002;
- public static int iRunmode = 0;
- public static boolean bVideoEncoding = false;
- public static boolean bVideoDecoding = false;
- public static boolean bSurfaceoutput = true;
- public static boolean bCover = true;
- public static boolean bRemoteview = false;
- public static Date dateVideoincoming = new Date();
- public static int incurtenLength = 2000;
- public static int outcurtenLength = 1000;
- public static boolean bVideoMute = false;
- public static boolean bProgressvideooffer = false;
- }
|