![JAR search and dependency download from the Maven repository](/logo.png)
org.mp4parser.boxes.iso14496.part12.ChunkOffsetBox Maven / Gradle / Ivy
package org.mp4parser.boxes.iso14496.part12;
import org.mp4parser.support.AbstractFullBox;
/**
* Abstract Chunk Offset Box
*/
public abstract class ChunkOffsetBox extends AbstractFullBox {
public ChunkOffsetBox(String type) {
super(type);
}
public abstract long[] getChunkOffsets();
public abstract void setChunkOffsets(long[] chunkOffsets);
public String toString() {
return this.getClass().getSimpleName() + "[entryCount=" + getChunkOffsets().length + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy