1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 23:07:35 +00:00

LibCompress: Implement support for multiple concatenated XZ streams

This commit is contained in:
Tim Schumacher 2023-03-30 13:16:40 +02:00 committed by Andreas Kling
parent 00332c9b7d
commit 726963edc7
3 changed files with 62 additions and 13 deletions

View file

@ -112,7 +112,8 @@ private:
NonnullOwnPtr<CountingStream> m_stream;
Optional<XzStreamFlags> m_stream_flags;
bool m_found_stream_footer { false };
bool m_found_first_stream_header { false };
bool m_found_last_stream_footer { false };
Optional<MaybeOwned<Stream>> m_current_block_stream {};
Optional<u64> m_current_block_uncompressed_size {};