Package | Description |
---|---|
org.monte.media.avi |
Provides media handlers for the AVI file format.
|
org.monte.media.riff |
Provides media handlers for the RIFF file format.
|
Modifier and Type | Field and Description |
---|---|
protected java.util.ArrayList<RIFFChunk> |
AbstractAVIStream.Track.extraHeaders
List of additional header chunks.
|
Modifier and Type | Method and Description |
---|---|
RIFFChunk[] |
RIFFChunk.getCollectionChunks(int id) |
RIFFChunk |
RIFFChunk.getPropertyChunk(int id) |
Modifier and Type | Method and Description |
---|---|
void |
RIFFChunk.addCollectionChunk(RIFFChunk chunk) |
void |
RIFFVisitor.enterGroup(RIFFChunk group)
This method is invoked when the parser enters a group chunk.
|
boolean |
RIFFVisitor.enteringGroup(RIFFChunk group)
This method is invoked when the parser attempts to enter a group.
|
protected boolean |
RIFFParser.isCollectionChunk(RIFFChunk chunk)
Checks wether the ID of the chunk has been declared as a
collection chunk.
|
protected boolean |
RIFFParser.isDataChunk(RIFFChunk chunk)
Checks whether the ID of the chunk has been declared as a
data chunk.
|
protected boolean |
RIFFParser.isGroupChunk(RIFFChunk chunk)
Checks whether the ID of the chunk has been declared as
a group chunk.
|
protected boolean |
RIFFParser.isPropertyChunk(RIFFChunk chunk)
Checks wether the ID of the chunk has been declared as a
property chunk.
|
void |
RIFFVisitor.leaveGroup(RIFFChunk group)
This method is invoked when the parser leaves a group chunk.
|
void |
RIFFChunk.putPropertyChunk(RIFFChunk chunk) |
void |
RIFFVisitor.visitChunk(RIFFChunk group,
RIFFChunk chunk)
This method is invoked when the parser has read a data chunk or
has skipped a stop chunk.
|
Constructor and Description |
---|
RIFFChunk(int type,
int id,
long size,
long scan,
RIFFChunk propGroup) |