本文整理汇总了Java中javax.media.PlugInManager类的典型用法代码示例。如果您正苦于以下问题:Java PlugInManager类的具体用法?Java PlugInManager怎么用?Java PlugInManager使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
PlugInManager类属于javax.media包,在下文中一共展示了PlugInManager类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: typeToStr
import javax.media.PlugInManager; //导入依赖的package包/类
private static String typeToStr(int type)
{
switch (type)
{
case PlugInManager.DEMULTIPLEXER:
return "PlugInManager.DEMULTIPLEXER";
case PlugInManager.CODEC:
return "PlugInManager.CODEC";
case PlugInManager.EFFECT:
return "PlugInManager.EFFECT";
case PlugInManager.RENDERER:
return "PlugInManager.RENDERER";
case PlugInManager.MULTIPLEXER:
return "PlugInManager.MULTIPLEXER";
default:
throw new IllegalArgumentException();
}
}
开发者ID:champtar,项目名称:fmj-sourceforge-mirror,代码行数:24,代码来源:PlugInManagerInitializerCodeGen.java
示例2: 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;
}
开发者ID:champtar,项目名称:fmj-sourceforge-mirror,代码行数:33,代码来源:AVCustomRecv.java
示例3: enableSyncMux
import javax.media.PlugInManager; //导入依赖的package包/类
/**
* Change the plugin list to disable the default RawBufferMux
* thus allowing the RawSyncBufferMux to be used.
* This is a handy trick. You wouldn't know this, would you? :)
*/
void enableSyncMux() {
Vector muxes = PlugInManager.getPlugInList(null, null,
PlugInManager.MULTIPLEXER);
for (int i = 0; i < muxes.size(); i++) {
String cname = (String)muxes.elementAt(i);
if (cname.equals("com.sun.media.multiplexer.RawBufferMux")) {
muxes.removeElementAt(i);
break;
}
}
PlugInManager.setPlugInList(muxes, PlugInManager.MULTIPLEXER);
}
开发者ID:champtar,项目名称:fmj-sourceforge-mirror,代码行数:18,代码来源:DataSourceReader.java
示例4: 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
}
}
开发者ID:TTalkIM,项目名称:Smack,代码行数:46,代码来源:JMFInit.java
示例5: detectS8DirectAudio
import javax.media.PlugInManager; //导入依赖的package包/类
private void detectS8DirectAudio() {
Class<?> cls;
int plType = PlugInManager.RENDERER;
String dar = "com.sun.media.renderer.audio.DirectAudioRenderer";
try {
// Check if this is the solaris Performance Pack - hack
cls = Class.forName("SunVideoAuto");
// Find the renderer class and instantiate it.
cls = Class.forName(dar);
Renderer rend = (Renderer) cls.newInstance();
if (rend instanceof ExclusiveUse
&& !((ExclusiveUse) rend).isExclusive()) {
// sol8+, DAR supports mixing
Vector<String> rendList = PlugInManager.getPlugInList(null, null,
plType);
int listSize = rendList.size();
boolean found = false;
String rname = null;
for (int i = 0; i < listSize; i++) {
rname = (String) (rendList.elementAt(i));
if (rname.equals(dar)) { // DAR is in the registry
found = true;
rendList.removeElementAt(i);
break;
}
}
if (found) {
rendList.insertElementAt(dar, 0);
PlugInManager.setPlugInList(rendList, plType);
PlugInManager.commit();
}
}
}
catch (Throwable tt) {
//Do nothing
}
}
开发者ID:TTalkIM,项目名称:Smack,代码行数:43,代码来源:JMFInit.java
示例6: 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
}
}
开发者ID:visit,项目名称:spark-svn-mirror,代码行数:45,代码来源:JMFInit.java
示例7: detectS8DirectAudio
import javax.media.PlugInManager; //导入依赖的package包/类
private void detectS8DirectAudio() {
Class<?> cls;
int plType = PlugInManager.RENDERER;
String dar = "com.sun.media.renderer.audio.DirectAudioRenderer";
try {
// Check if this is the solaris Performance Pack - hack
Class.forName("SunVideoAuto");
// Find the renderer class and instantiate it.
cls = Class.forName(dar);
Renderer rend = (Renderer)cls.newInstance();
if (rend instanceof ExclusiveUse
&& !((ExclusiveUse)rend).isExclusive()) {
// sol8+, DAR supports mixing
Vector<String> rendList = PlugInManager.getPlugInList(null, null,
plType);
int listSize = rendList.size();
boolean found = false;
String rname;
for (int i = 0; i < listSize; i++) {
rname = (String)(rendList.elementAt(i));
if (rname.equals(dar)) { // DAR is in the registry
found = true;
rendList.removeElementAt(i);
break;
}
}
if (found) {
rendList.insertElementAt(dar, 0);
PlugInManager.setPlugInList(rendList, plType);
PlugInManager.commit();
}
}
}
catch (Throwable tt) {
// Nothing to do
}
}
开发者ID:visit,项目名称:spark-svn-mirror,代码行数:43,代码来源:JMFInit.java
注:本文中的javax.media.PlugInManager类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论