Class OggSeekPoint
- java.lang.Object
-
- com.sedmelluq.discord.lavaplayer.container.ogg.OggSeekPoint
-
public class OggSeekPoint extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description OggSeekPoint(long position, long granulePosition, long timecode, long pageSequence)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetGranulePosition()longgetPageSequence()longgetPosition()longgetTimecode()
-
-
-
Constructor Detail
-
OggSeekPoint
public OggSeekPoint(long position, long granulePosition, long timecode, long pageSequence)- Parameters:
position- The position of the seek point in the stream, in bytes.granulePosition- The granule position of the seek point in the stream.timecode- The time of the seek point in the stream, in milliseconds.pageSequence- The page to what this seek point belong.
-
-
Method Detail
-
getPosition
public long getPosition()
- Returns:
- The position of the seek point in the stream, in bytes.
-
getGranulePosition
public long getGranulePosition()
- Returns:
- The granule position of the seek point in the stream.
-
getTimecode
public long getTimecode()
- Returns:
- The timecode of the seek point in the stream, in milliseconds.
-
getPageSequence
public long getPageSequence()
- Returns:
- The page to what this seek point belong.
-
-