📄 audioresource.java
字号:
/* * 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -