Sharkysoft home

lava.riff.wave
Class WaveCuePoint

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

public class WaveCuePoint
extends java.lang.Object

Single cue point from cue points chunk.

Details: A WaveCuePoint represents a single cue point entry in a .wav file's "cue" chunk. See "Cue Points Chunk" in RIFF WAVE (.WAV) file format for a description of this class' members.

Author:
Sharky

Field Summary
 int dwBlockStart
          dwBlockStart field.
 int dwChunkStart
          dwChunkStart field.
 int dwName
          dwName field.
 int dwPosition
          dwPosition field.
 int dwSampleOffset
          dwSampleOffset field.
 int fccChunk
          fccChunk field.
 
Constructor Summary
WaveCuePoint()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

dwName

public int dwName
dwName field.

Details: This is the four character name of the cue point, which is used as the key into the ADTL chunk to retrieve additional information about the cue point, such as the cue point's label.

See Also:
WaveStreamReader.getAdtlChunkReader(), WaveAdtlChunkReader

dwPosition

public int dwPosition
dwPosition field.

fccChunk

public int fccChunk
fccChunk field.

dwChunkStart

public int dwChunkStart
dwChunkStart field.

dwBlockStart

public int dwBlockStart
dwBlockStart field.

dwSampleOffset

public int dwSampleOffset
dwSampleOffset field.
Constructor Detail

WaveCuePoint

public WaveCuePoint()

Sharkysoft home