FastLED 3.9.15
Loading...
Searching...
No Matches

◆ STBVorbisError

Enumerator
VORBIS__no_error 
VORBIS_need_more_data 
VORBIS_invalid_api_mixing 
VORBIS_outofmem 
VORBIS_feature_not_supported 
VORBIS_too_many_channels 
VORBIS_file_open_failure 
VORBIS_seek_without_length 
VORBIS_unexpected_eof 
VORBIS_seek_invalid 
VORBIS_invalid_setup 
VORBIS_invalid_stream 
VORBIS_missing_capture_pattern 
VORBIS_invalid_stream_structure_version 
VORBIS_continued_packet_flag_invalid 
VORBIS_incorrect_stream_serial_number 
VORBIS_invalid_first_page 
VORBIS_bad_packet_type 
VORBIS_cant_find_last_page 
VORBIS_seek_failed 
VORBIS_ogg_skeleton_not_supported 

Definition at line 401 of file stb_vorbis.h.

402{
404
405 VORBIS_need_more_data=1, // not a real error
406
407 VORBIS_invalid_api_mixing, // can't mix API modes
408 VORBIS_outofmem, // not enough memory
409 VORBIS_feature_not_supported, // uses floor 0
410 VORBIS_too_many_channels, // FL_STB_VORBIS_MAX_CHANNELS is too small
411 VORBIS_file_open_failure, // fopen() failed
412 VORBIS_seek_without_length, // can't seek in unknown-length file
413
414 VORBIS_unexpected_eof=10, // file is truncated?
415 VORBIS_seek_invalid, // seek past EOF
416
417 // decoding errors (corrupt/invalid stream) -- you probably
418 // don't care about the exact details of these
419
420 // vorbis errors:
423
424 // ogg errors:
434};