Unverified Commit 1c7b1eb5 authored by Wolle's avatar Wolle Committed by GitHub

Missing variables added

enum : int8_t  {VORBIS_PARSE_OGG_DONE = 100,
                ERR_VORBIS_NONE = 0,
                ERR_VORBIS_CHANNELS_OUT_OF_RANGE = -1,
                ERR_VORBIS_INVALID_SAMPLERATE = -2,
                ERR_VORBIS_EXTRA_CHANNELS_UNSUPPORTED = -3,
                ERR_VORBIS_DECODER_ASYNC = -4,
                ERR_VORBIS_OGG_SYNC_NOT_FOUND = - 5,
                ERR_VORBIS_BAD_HEADER = -6,
                ERR_VORBIS_NOT_AUDIO = -7,
                ERR_VORBIS_BAD_PACKET = -8
            };
parent 715af272
......@@ -38,7 +38,11 @@ enum : int8_t {VORBIS_PARSE_OGG_DONE = 100,
ERR_VORBIS_INVALID_SAMPLERATE = -2,
ERR_VORBIS_EXTRA_CHANNELS_UNSUPPORTED = -3,
ERR_VORBIS_DECODER_ASYNC = -4,
ERR_VORBIS_OGG_SYNC_NOT_FOUND = - 5};
ERR_VORBIS_OGG_SYNC_NOT_FOUND = - 5,
ERR_VORBIS_BAD_HEADER = -6,
ERR_VORBIS_NOT_AUDIO = -7,
ERR_VORBIS_BAD_PACKET = -8
};
typedef struct _codebook{
uint8_t dim; /* codebook dimensions (elements per vector) */
......@@ -276,4 +280,4 @@ int _make_decode_table(codebook_t *s, char *lengthlist, uint8_t quantvals,
int _make_words(char *l, uint16_t n, uint32_t *r, uint8_t quantvals, codebook_t *b, int maptype);
uint8_t _book_maptype1_quantvals(codebook_t *b);
void vorbis_book_clear(codebook_t *b);
int32_t *_vorbis_window(int left);
\ No newline at end of file
int32_t *_vorbis_window(int left);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment