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

◆ crc32_init()

static void fl::third_party::vorbis::crc32_init ( void )
static

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

727{
728 int32_t i,j;
729 uint32 s;
730 for(i=0; i < 256; i++) {
731 for (s=(uint32) i << 24, j=0; j < 8; ++j)
732 s = (s << 1) ^ (s >= (1UL<<31) ? CRC32_POLY : 0);
733 crc_table[i] = s;
734 }
735}
static constexpr uint32_t CRC32_POLY
static uint32 crc_table[256]
fl::i32 int32_t
Definition coder.h:220

References CRC32_POLY, crc_table, and FL_NOEXCEPT.

Referenced by start_decoder().

+ Here is the caller graph for this function: