All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.media.PlugIn Maven / Gradle / Ivy

There is a newer version: 1.0.2-jitsi
Show 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