org.jcodec.common.DemuxerTrack Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcodec Show documentation
Show all versions of jcodec Show documentation
Pure Java implementation of video/audio codecs and formats
package org.jcodec.common;
import java.io.IOException;
import org.jcodec.common.model.Packet;
public interface DemuxerTrack {
Packet nextFrame() throws IOException;
boolean gotoFrame(long i);
long getCurFrame();
void seek(double second);
}