javax.media.control.BufferControl 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.control;
import javax.media.*;
/**
* Standard JMF class -- see this class in the JMF Javadoc. Complete.
*
* @author Ken Larson
*
*/
public interface BufferControl extends Control
{
public static final long DEFAULT_VALUE = -1;
public static final long MAX_VALUE = -2;
public long getBufferLength();
public boolean getEnabledThreshold();
public long getMinimumThreshold();
public long setBufferLength(long time);
public void setEnabledThreshold(boolean b);
public long setMinimumThreshold(long time);
}