mirror of https://github.com/xiph/flac
add new error codes
This commit is contained in:
parent
ee5cfb5010
commit
22bc5d92d0
|
@ -27,7 +27,6 @@ typedef enum {
|
|||
FLAC__STREAM_DECODER_READ_METADATA,
|
||||
FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC,
|
||||
FLAC__STREAM_DECODER_READ_FRAME,
|
||||
FLAC__STREAM_DECODER_RESYNC_IN_HEADER,
|
||||
FLAC__STREAM_DECODER_END_OF_STREAM,
|
||||
FLAC__STREAM_DECODER_ABORTED,
|
||||
FLAC__STREAM_DECODER_UNPARSEABLE_STREAM,
|
||||
|
@ -50,7 +49,9 @@ typedef enum {
|
|||
extern const char *FLAC__StreamDecoderWriteStatusString[];
|
||||
|
||||
typedef enum {
|
||||
FLAC__STREAM_DECODER_ERROR_LOST_SYNC
|
||||
FLAC__STREAM_DECODER_ERROR_LOST_SYNC,
|
||||
FLAC__STREAM_DECODER_ERROR_BAD_HEADER,
|
||||
FLAC__STREAM_DECODER_ERROR_FRAME_CRC_MISMATCH
|
||||
} FLAC__StreamDecoderErrorStatus;
|
||||
extern const char *FLAC__StreamDecoderErrorStatusString[];
|
||||
|
||||
|
|
Loading…
Reference in New Issue