LibCompress: Add support for dynamic deflate blocks.

This commit is contained in:
asynts 2020-08-31 12:20:23 +02:00 committed by Andreas Kling
commit 0ebf56efb0
Notes: sideshowbarker 2024-07-19 02:57:47 +09:00
2 changed files with 93 additions and 7 deletions

View file

@ -99,7 +99,7 @@ public:
private:
u32 decode_run_length(u32);
u32 decode_distance(u32);
void decode_codes(CanonicalCode&, CanonicalCode&);
void decode_codes(CanonicalCode& literal_code, Optional<CanonicalCode>& distance_code);
bool m_read_final_bock { false };