Package javazoom.jl.decoder
Interface BitstreamErrors
-
- All Superinterfaces:
JavaLayerErrors
- All Known Implementing Classes:
Bitstream,BitstreamException
public interface BitstreamErrors extends JavaLayerErrors
This interface describes all error codes that can be thrown inBistreamExceptions.- Since:
- 0.0.6
- See Also:
BitstreamException
-
-
Field Summary
Fields Modifier and Type Field Description static intBITSTREAM_LASTstatic intINVALIDFRAMEFrame data are missing.static intSTREAM_EOFThe end of the stream was reached.static intSTREAM_ERRORA problem occurred reading from the stream.static intUNEXPECTED_EOFThe end of the stream was reached prematurely.static intUNKNOWN_ERRORAn undeterminable error occurred.static intUNKNOWN_SAMPLE_RATEThe header describes an unknown sample rate.-
Fields inherited from interface javazoom.jl.decoder.JavaLayerErrors
BITSTREAM_ERROR, DECODER_ERROR
-
-
-
-
Field Detail
-
UNKNOWN_ERROR
static final int UNKNOWN_ERROR
An undeterminable error occurred.- See Also:
- Constant Field Values
-
UNKNOWN_SAMPLE_RATE
static final int UNKNOWN_SAMPLE_RATE
The header describes an unknown sample rate.- See Also:
- Constant Field Values
-
STREAM_ERROR
static final int STREAM_ERROR
A problem occurred reading from the stream.- See Also:
- Constant Field Values
-
UNEXPECTED_EOF
static final int UNEXPECTED_EOF
The end of the stream was reached prematurely.- See Also:
- Constant Field Values
-
STREAM_EOF
static final int STREAM_EOF
The end of the stream was reached.- See Also:
- Constant Field Values
-
INVALIDFRAME
static final int INVALIDFRAME
Frame data are missing.- See Also:
- Constant Field Values
-
BITSTREAM_LAST
static final int BITSTREAM_LAST
- See Also:
- Constant Field Values
-
-