Sharkysoft home

lava.riff.wave
Class RIFF_WAVE

java.lang.Object
  |
  +--lava.riff.wave.RIFF_WAVE

public class RIFF_WAVE
extends java.lang.Object

RIFF-wave file constants.

Details: RIFF_WAVE contains constants frequently used in WAVE files.


Field Summary
static int ADTL_TAG
          The 'adtl' chunk tag.
static int CUE_TAG
          The 'cue ' chunk tag.
static int DATA_TAG
          The 'data' chunk tag.
static int FACT_TAG
          The 'fact' chunk tag.
static int FILE_TAG
          The 'file' chunk tag.
static int FMT_TAG
          The 'fmt ' chunk tag.
static int LABL_TAG
          The 'labl' chunk tag.
static int LIST_TAG
          The 'LIST' chunk tag.
static int NOTE_TAG
          The 'note' chunk tag.
static int PLST_TAG
          The 'plst' chunk tag.
static int SLNT_TAG
          The 'slnt' chunk tag.
static int WAVE_TAG
          The 'WAVE' type identifier.
static int WAVL_TAG
          The 'wavl' chunk tag.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

WAVE_TAG

public static final int WAVE_TAG
The 'WAVE' type identifier. This tag does not identify a chunk, but precedes the set of inner chunks of the main RIFF chunk.

FMT_TAG

public static final int FMT_TAG
The 'fmt ' chunk tag. The fmt chunk is a mandatory inner chunk of the 'WAVE' chunk.

DATA_TAG

public static final int DATA_TAG
The 'data' chunk tag. The data chunk is a mandatory inner chunk of the 'WAVE' chunk.

CUE_TAG

public static final int CUE_TAG
The 'cue ' chunk tag. The cue chunk contains a list of cue points.

FACT_TAG

public static final int FACT_TAG
The 'fact' chunk tag.

LIST_TAG

public static final int LIST_TAG
The 'LIST' chunk tag. The LIST chunk contains either wave list (identified by the 'wavl' tag) or an associated data list (identified by the 'adtl' tag).

ADTL_TAG

public static final int ADTL_TAG
The 'adtl' chunk tag. An 'adtl' chunk contains miscellaneous data to associate with cue points.

LABL_TAG

public static final int LABL_TAG
The 'labl' chunk tag. A 'labl' chunk contains the name of a cue point.

NOTE_TAG

public static final int NOTE_TAG
The 'note' chunk tag. A 'note' chunk contains comment text associated with a cue point.

PLST_TAG

public static final int PLST_TAG
The 'plst' chunk tag.

FILE_TAG

public static final int FILE_TAG
The 'file' chunk tag. A 'file' chunk contains information described in other file formats.

WAVL_TAG

public static final int WAVL_TAG
The 'wavl' chunk tag. A 'wavl' chunk contains either a data chunk or a 'slnt' chunk.

SLNT_TAG

public static final int SLNT_TAG
The 'slnt' chunk tag. A 'slnt' chunk describes a period of sample silence.

Sharkysoft home