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

◆ get8()

static uint8 fl::third_party::vorbis::get8 ( vorb * z)
static

Definition at line 1061 of file stb_vorbis.cpp.hpp.

1062{
1063 if (FL_STBV_USE_MEMORY(z)) {
1064 if (z->stream >= z->stream_end) { z->eof = true; return 0; }
1065 return *z->stream++;
1066 }
1067
1068 #ifndef FL_STB_VORBIS_NO_STDIO
1069 {
1070 int32_t c = fgetc(z->f);
1071 if (c == EOF) { z->eof = true; return 0; }
1072 return c;
1073 }
1074 #endif
1075}
uint32_t z[NUM_LAYERS]
Definition Fire2023.h:93
fl::i32 int32_t
Definition s16x16x4.h:220
#define FL_STBV_USE_MEMORY(z)

References FL_NOEXCEPT, FL_STBV_USE_MEMORY, and z.

Referenced by capture_pattern(), get32(), get8_packet_raw(), maybe_start_packet(), start_decoder(), start_page_no_capturepattern(), and vorbis_find_page().

+ Here is the caller graph for this function: