com.mp4parser.streaming.WriteOnlyBox Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of isoparser Show documentation
Show all versions of isoparser Show documentation
A generic parser and writer for all ISO 14496 based files (MP4, Quicktime, DCF, PDCF, ...)
package com.mp4parser.streaming;
import com.coremedia.iso.BoxParser;
import com.coremedia.iso.boxes.Box;
import com.coremedia.iso.boxes.Container;
import com.googlecode.mp4parser.DataSource;
import java.io.IOException;
import java.nio.ByteBuffer;
public abstract class WriteOnlyBox implements Box {
private final String type;
private Container parent;
public Container getParent() {
return parent;
}
public void setParent(Container parent) {
this.parent = parent;
}
public long getOffset() {
throw new RuntimeException("It's a´write only box");
}
public void parse(DataSource dataSource, ByteBuffer header, long contentSize, BoxParser boxParser) throws IOException {
throw new RuntimeException("It's a´write only box");
}
public WriteOnlyBox(String type) {
this.type = type;
}
public String getType() {
return type;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy