return new PlugInInfo(className, inputFormats, new Format[] {}, PlugInManager.RENDERER);
}
else if (o instanceof Multiplexer)
{
if (TRACE) logger.fine("PlugInUtility: Registering Multiplexer: " + className);
final Multiplexer oCast = (Multiplexer) o;
// JMF Multiplexers always have nothing for the input formats.
return new PlugInInfo(className, new Format[] {}, oCast.getSupportedOutputContentDescriptors(null), PlugInManager.MULTIPLEXER);
}
else
{
logger.warning("PlugInUtility: Unknown or unsupported plug-in: " + o.getClass());
return null;