mirror of
https://github.com/BinomialLLC/basis_universal.git
synced 2026-08-02 03:19:06 +00:00
Huffman encoder fixes for very large streams
Allowing Huffman decoder to use different fast bits table sizes Adding NV and AMD BC1 decoders
This commit is contained in:
@@ -195,7 +195,7 @@ namespace basist
|
||||
{
|
||||
crc = ~crc;
|
||||
|
||||
const uint8_t* p = reinterpret_cast<const uint8_t*>(r);
|
||||
const uint8_t* p = static_cast<const uint8_t*>(r);
|
||||
for (; size; --size)
|
||||
{
|
||||
const uint16_t q = *p++ ^ (crc >> 8);
|
||||
|
||||
Reference in New Issue
Block a user