本文整理汇总了Java中javax.media.PlugInManager.addPlugIn方法的典型用法代码示例。如果您正苦于以下问题:Java PlugInManager.addPlugIn方法的具体用法?Java PlugInManager.addPlugIn怎么用?Java PlugInManager.addPlugIn使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.media.PlugInManager
的用法示例。
在下文中一共展示了PlugInManager.addPlugIn方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: registerCustomPayload
import javax.media.PlugInManager; //导入方法依赖的package包/类
static boolean registerCustomPayload() {
// Register PcmDepacketizer with the PlugInManager.
PcmDepacketizer pcmDepktizer = null;
try {
pcmDepktizer = new PcmDepacketizer();
} catch (Exception e1) {
System.err.println("Cannot instantiate PcmDepacketizer: " + e1);
return false;
}
try {
PlugInManager.addPlugIn(pcmDepktizer.getClass().getName(),
pcmDepktizer.getSupportedInputFormats(),
pcmDepktizer.getSupportedOutputFormats(null),
PlugInManager.CODEC);
} catch (Exception e2) {
System.err.println("Cannot register PcmDepacketizer: " + e2);
return false;
}
myPCMFormat = (pcmDepktizer.getSupportedInputFormats())[0];
// We don't need to commit the changes since we only need this
// for the duration of this application.
System.err.println("Registered payload " + AVCustomTrans.MYPCM_PAYLOAD + " as: " + myPCMFormat);
return true;
}
示例2: detectDirectAudio
import javax.media.PlugInManager; //导入方法依赖的package包/类
private void detectDirectAudio() {
Class<?> cls;
int plType = PlugInManager.RENDERER;
String dar = "com.sun.media.renderer.audio.DirectAudioRenderer";
try {
// Check if this is the Windows Performance Pack - hack
cls = Class.forName("VFWAuto");
// Check if DS capture is supported, otherwise fail DS renderer
// since NT doesn't have capture
cls = Class.forName("com.sun.media.protocol.dsound.DSound");
// Find the renderer class and instantiate it.
cls = Class.forName(dar);
Renderer rend = (Renderer) cls.newInstance();
try {
// Set the format and open the device
AudioFormat af = new AudioFormat(AudioFormat.LINEAR, 44100, 16,
2);
rend.setInputFormat(af);
rend.open();
Format[] inputFormats = rend.getSupportedInputFormats();
// Register the device
PlugInManager.addPlugIn(dar, inputFormats, new Format[0],
plType);
// Move it to the top of the list
Vector<String> rendList = PlugInManager.getPlugInList(null, null,
plType);
int listSize = rendList.size();
if (rendList.elementAt(listSize - 1).equals(dar)) {
rendList.removeElementAt(listSize - 1);
rendList.insertElementAt(dar, 0);
PlugInManager.setPlugInList(rendList, plType);
PlugInManager.commit();
// Log.debug("registered");
}
rend.close();
}
catch (Throwable t) {
// Log.debug("Error " + t);
}
}
catch (Throwable tt) {
//Do nothing
}
}
示例3: detectDirectAudio
import javax.media.PlugInManager; //导入方法依赖的package包/类
private void detectDirectAudio() {
Class<?> cls;
int plType = PlugInManager.RENDERER;
String dar = "com.sun.media.renderer.audio.DirectAudioRenderer";
try {
// Check if this is the Windows Performance Pack - hack
Class.forName("VFWAuto");
// Check if DS capture is supported, otherwise fail DS renderer
// since NT doesn't have capture
Class.forName("com.sun.media.protocol.dsound.DSound");
// Find the renderer class and instantiate it.
cls = Class.forName(dar);
Renderer rend = (Renderer)cls.newInstance();
try {
// Set the format and open the device
AudioFormat af = new AudioFormat(AudioFormat.LINEAR, 44100, 16,
2);
rend.setInputFormat(af);
rend.open();
Format[] inputFormats = rend.getSupportedInputFormats();
// Register the device
PlugInManager.addPlugIn(dar, inputFormats, new Format[0],
plType);
// Move it to the top of the list
Vector<String> rendList = PlugInManager.getPlugInList(null, null, plType);
int listSize = rendList.size();
if (rendList.elementAt(listSize - 1).equals(dar)) {
rendList.removeElementAt(listSize - 1);
rendList.insertElementAt(dar, 0);
PlugInManager.setPlugInList(rendList, plType);
PlugInManager.commit();
// Log.debug("registered");
}
rend.close();
}
catch (Throwable t) {
// Log.debug("Error " + t);
}
}
catch (Throwable tt) {
// Nothing to do
}
}