audioresource.java

来自「myjxta是用jxta开发的一个p2p通讯软件 有聊天 文件共享 视频3大功」· Java 代码 · 共 28 行

JAVA
28
字号
/* * Created on Feb 1, 2005 * * TODO To change the template for this generated file go to * Window - Preferences - Java - Code Style - Code Templates */package net.jxta.myjxta.plugins.vojxta;import org.xiph.speex.spi.SpeexEncoding;/** * @author Ravi * * @modified 2005-22-03 jamoore add getBufferSize() */public interface AudioResource {		public static final int BLOCK_SIZE = 640;	// default = 640	public static final int SAMPLE_RATE = 32000;	// default = 16000	public static final int MODE = 1;	// default = 1	public static final int QUALITY = SpeexEncoding.SPEEX_Q1.getQuality ();//SPEEX_Q8.getQuality();	// default = SPEEX_Q8	public static final int CHANNELS = 1;	// default = 1	public static final int LINE_BUFFER_SIZE = 8192;    public int getBufferSize();    }

⌨️ 快捷键说明

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