package org.jcodec.common; import java.io.IOException; public interface SeekableDemuxerTrack extends DemuxerTrack { boolean gotoFrame(long paramLong) throws IOException; boolean gotoSyncFrame(long paramLong) throws IOException; long getCurFrame(); void seek(double paramDouble) throws IOException; }