public abstract class AbstractSampleEntry extends AbstractContainerBox implements SampleEntry
AudioSampleEntry,
VisualSampleEntry,
TextSampleEntry| Modifier and Type | Field and Description |
|---|---|
protected int |
dataReferenceIndex |
largeBox, type| Modifier | Constructor and Description |
|---|---|
protected |
AbstractSampleEntry(java.lang.String type) |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
getBox(java.nio.channels.WritableByteChannel writableByteChannel)
Writes the complete box - size | 4-cc | content - to the given
writableByteChannel. |
int |
getDataReferenceIndex() |
abstract void |
parse(java.nio.channels.ReadableByteChannel dataSource,
java.nio.ByteBuffer header,
long contentSize,
BoxParser boxParser)
Parses the box excluding the already parsed header (size, 4cc, [long-size], [user-type]).
|
void |
setDataReferenceIndex(int dataReferenceIndex) |
getHeader, getSize, getType, setParentaddBox, getBoxes, getBoxes, getBoxes, getContainerSize, initContainer, setBoxes, toString, writeContainerpublic int getDataReferenceIndex()
getDataReferenceIndex in interface SampleEntrypublic void setDataReferenceIndex(int dataReferenceIndex)
setDataReferenceIndex in interface SampleEntrypublic abstract void parse(java.nio.channels.ReadableByteChannel dataSource,
java.nio.ByteBuffer header,
long contentSize,
BoxParser boxParser)
throws java.io.IOException
ParsableBoxcontentSize, contentSize
number of bytes should be read from the box source (readableByteChannel).
If you need the header buffer at a later stage you have to create a copy.parse in interface ParsableBoxparse in class AbstractContainerBoxdataSource - the source for this boxheader - the box' already parsed header (create copy if you need it
later as it will be overwritten)contentSize - remaining bytes of this boxboxParser - use it to parse sub-boxes.java.io.IOException - in case of an error during a read operationpublic abstract void getBox(java.nio.channels.WritableByteChannel writableByteChannel)
throws java.io.IOException
BoxwritableByteChannel.getBox in interface BoxgetBox in class AbstractContainerBoxwritableByteChannel - the box's sinkjava.io.IOException - in case of problems with the ChannelCopyright © 2020. All rights reserved.