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

javax.media.Multiplexer Maven / Gradle / Ivy

The newest version!
package javax.media;

import javax.media.protocol.*;

/**
 * Standard JMF class -- see this class in the JMF Javadoc. Complete.
 *
 * @author Ken Larson
 *
 */
public interface Multiplexer extends PlugIn
{
    public DataSource getDataOutput();

    public Format[] getSupportedInputFormats();

    public ContentDescriptor[] getSupportedOutputContentDescriptors(
            Format[] inputs);

    public int process(Buffer buffer, int trackID);

    public ContentDescriptor setContentDescriptor(
            ContentDescriptor outputContentDescriptor);

    public Format setInputFormat(Format format, int trackID);

    public int setNumTracks(int numTracks);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy