blob: 01f5ae45a64bc61775ca97fdf6870b27db93d2b1 [file] [log] [blame]
package com.coremedia.iso.boxes;
import com.googlecode.mp4parser.AbstractFullBox;
/**
* Abstract Chunk Offset Box
*/
public abstract class ChunkOffsetBox extends AbstractFullBox {
public ChunkOffsetBox(String type) {
super(type);
}
public abstract long[] getChunkOffsets();
public String toString() {
return this.getClass().getSimpleName() + "[entryCount=" + getChunkOffsets().length + "]";
}
}