javax.media.PlugIn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fmj Show documentation
Show all versions of fmj Show documentation
Freedom for Media in Java
The newest version!
package javax.media;
/**
* Standard JMF class -- see this class in the JMF Javadoc.
*
* Complete. Note: JMF will call close if open() fails. Observed on a
* Demultiplexer.
*
* @author Ken Larson
*
*/
public interface PlugIn extends Controls
{
public static int BUFFER_PROCESSED_OK = 0;
public static int BUFFER_PROCESSED_FAILED = 1;
public static int INPUT_BUFFER_NOT_CONSUMED = 2;
public static int OUTPUT_BUFFER_NOT_FILLED = 4;
public static int PLUGIN_TERMINATED = 8;
public void close();
public String getName();
public void open() throws ResourceUnavailableException;
public void reset();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy