javax.media.Processor 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
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;
}