LostInKadath
LostInKadath
Since #53 has been merged, building with _CMake_ is supported. =) I've also tried to build the project with _MSYS2 gcc-13.2.0_ using _CMake_ and _Ninja_ generator on _Windows_: ```sh cmake...
The minimal fix could be like: ``` r = bs_read_u(b, i); if (i < 32) return r + (1
I was wrong about the minimal fix. This function implements the Exponential-Golomb decoding algorithm: ```cpp static inline uint32_t bs_read_ue(bs_t* b) { int32_t r = 0; int i = 0; while(...