org.mp4parser.boxes.sampleentry.MpegSampleEntry 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 org.mp4parser.boxes.sampleentry;
import org.mp4parser.BoxParser;
import org.mp4parser.tools.IsoTypeReader;
import org.mp4parser.tools.IsoTypeWriter;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.ReadableByteChannel;
import java.nio.channels.WritableByteChannel;
public class MpegSampleEntry extends AbstractSampleEntry {
public MpegSampleEntry() {
super("mp4s");
}
public MpegSampleEntry(String type) {
super(type);
}
@Override
public void parse(ReadableByteChannel dataSource, ByteBuffer header, long contentSize, BoxParser boxParser) throws IOException {
ByteBuffer bb = ByteBuffer.allocate(8);
dataSource.read(bb);
bb.position(6);// ignore 6 reserved bytes;
dataReferenceIndex = IsoTypeReader.readUInt16(bb);
initContainer(dataSource, contentSize - 8, boxParser);
}
@Override
public void getBox(WritableByteChannel writableByteChannel) throws IOException {
writableByteChannel.write(getHeader());
ByteBuffer bb = ByteBuffer.allocate(8);
bb.position(6);
IsoTypeWriter.writeUInt16(bb, dataReferenceIndex);
writableByteChannel.write((ByteBuffer) bb.rewind());
writeContainer(writableByteChannel);
}
public String toString() {
return "MpegSampleEntry" + getBoxes();
}
@Override
public long getSize() {
long s = getContainerSize();
long t = 8; // bytes to container start
return s + t + ((largeBox || (s + t) >= (1L << 32)) ? 16 : 8);
}
}