javax.media.control.H263Control 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 H263Control extends Control
{
public boolean getAdvancedPrediction();
public boolean getArithmeticCoding();
public int getBppMaxKb();
public boolean getErrorCompensation();
public int getHRD_B();
public boolean getPBFrames();
public boolean getUnrestrictedVector();
public boolean isAdvancedPredictionSupported();
public boolean isArithmeticCodingSupported();
public boolean isErrorCompensationSupported();
public boolean isPBFramesSupported();
public boolean isUnrestrictedVectorSupported();
public boolean setAdvancedPrediction(boolean newAdvancedPredictionMode);
public boolean setArithmeticCoding(boolean newArithmeticCodingMode);
public boolean setErrorCompensation(boolean newtErrorCompensationMode);
public boolean setPBFrames(boolean newPBFramesMode);
public boolean setUnrestrictedVector(boolean newUnrestrictedVectorMode);
}