javax.media.control.FramePositioningControl 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 FramePositioningControl extends Control
{
public static final Time TIME_UNKNOWN = Time.TIME_UNKNOWN;
public static final int FRAME_UNKNOWN = Integer.MAX_VALUE;
public Time mapFrameToTime(int frameNumber);
public int mapTimeToFrame(Time mediaTime);
public int seek(int frameNumber);
public int skip(int framesToSkip);
}