* The currently active plugin. If this is null, then no plugin could be initialized. If no plugin was specified,
* only the HTMLAudioPlugin is tested.
* @return The active plugin.
*/
public static final HTMLAudioPlugin getActivePlugin() {
HTMLAudioPluginImpl overlay = SoundJSImpl.getActivePlugin(); // warning: possible type cast exception if using
return (overlay != null) ? new HTMLAudioPlugin(overlay) : null; // different plugins
}