
File::Format::RIFF::Chunk - a single RIFF chunk

use File::Format::RIFF; my ( $chunk ) = new File::Format::RIFF::Chunk; $chunk->id( 'stuf' ); $chunk->data( 'here is some stuff' ); ... some $riff ... $riff->push( $chunk );

A File::Format::RIFF::Chunk is a single chunk of data in a RIFF file. It has an identifier and one piece of scalar data. The id must be a four character code, and the data can be any piece of scalar data you wish to store, in any format (it is treated as opaque binary data, so you must interpret it yourself).


fixme
fixme
fixme
fixme
fixme
fixme

Paul Sturm <sturm@branewave.com>