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

javax.media.Processor Maven / Gradle / Ivy

There is a newer version: 1.0.2-jitsi
Show newest version
package javax.media;

import javax.media.control.*;
import javax.media.protocol.*;

/**
 * Standard JMF class -- see this class in the JMF Javadoc. Complete.
 *
 * @author Ken Larson
 *
 */
public interface Processor extends Player
{
    public static final int Configuring = 140;
    public static final int Configured = 180;

    public void configure();

    public ContentDescriptor getContentDescriptor() throws NotConfiguredError;

    public DataSource getDataOutput() throws NotRealizedError;

    public ContentDescriptor[] getSupportedContentDescriptors()
            throws NotConfiguredError;

    public TrackControl[] getTrackControls() throws NotConfiguredError;

    public ContentDescriptor setContentDescriptor(
            ContentDescriptor outputContentDescriptor)
            throws NotConfiguredError;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy