Methods Summary |
---|
public boolean | detailMode()If this method returns true, the media engine will notify the
inspector more frequently with more details.
|
public boolean | verify(javax.media.Codec codec, javax.media.Format input, javax.media.Format output)This method is notified when the engine has selected the
given codec and has successfully attempted to set the given
input and output formats on it.
If this method returns false, the engine will reject the given
codec for use in the final flow graph.
|
public boolean | verify(javax.media.Renderer renderer, javax.media.Format input)This method is notified when the engine has selected the
given renderer and has successfully attempted to set the given
input format on it.
If this method returns false, the engine will reject the given
renderer for use in the final flow graph.
|
public boolean | verify(javax.media.Multiplexer mux, javax.media.Format[] inputs)This method is notified when the engine has selected the
given multiplexer and has successfully attempted to set the given
input formats on it.
If this method returns false, the engine will reject the given
multiplexer for use in the final flow graph.
|
public void | verifyInputFailed(javax.media.PlugIn plugin, javax.media.Format input)This method is notified if the engine has attempted and failed
to set the given input format on the given plugin.
|
public void | verifyOutputFailed(javax.media.PlugIn plugin, javax.media.Format output)This method is notified if the engine has attempted and failed
to set the given output format on the given plugin.
|