constants.java

来自「FMJ(freedom media for java)是java视频开发的新选择」· Java 代码 · 共 28 行

JAVA
28
字号
/* * SIP Communicator, the OpenSource Java VoIP and Instant Messaging client. * * Distributable under LGPL license. * See terms of license at gnu.org. */package net.java.sip.communicator.impl.media.codec;/** * Constants needed in codecs impl. * @author Damian Minkov */public class Constants{    public static final String ALAW_RTP = "ALAW/rtp";    public static final String SPEEX_RTP = "speex/rtp";    public static final String SPEEX = "speex";    public static final String ILBC_RTP = "ilbc/rtp";    public static final String ILBC = "ilbc";    /**     * mode    : Frame size for the encoding/decoding     * 20 - 20 ms     * 30 - 30 ms     */    public static int ILBC_MODE = 30;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?