1package com.coremedia.iso.boxes;
2
3import com.googlecode.mp4parser.AbstractFullBox;
4
5/**
6 * Abstract Chunk Offset Box
7 */
8public abstract class ChunkOffsetBox extends AbstractFullBox {
9
10    public ChunkOffsetBox(String type) {
11        super(type);
12    }
13
14    public abstract long[] getChunkOffsets();
15
16
17    public String toString() {
18        return this.getClass().getSimpleName() + "[entryCount=" + getChunkOffsets().length + "]";
19    }
20
21}
22