commit | c07d4fb7a213ced2ed6f986e77562174e2935ed5 | [log] [tgz] |
---|---|---|
author | Austin Schuh <austin.linux@gmail.com> | Sun Dec 13 16:40:04 2020 -0800 |
committer | Austin Schuh <austin.linux@gmail.com> | Tue Dec 15 21:08:46 2020 -0800 |
tree | c345da9e59d87446643ffb520022bb82c991b9ce | |
parent | c7b564cd0e74e18d496a11fcf4db4c3143dd84e1 [diff] |
Increase lzma encoder chunk size to 4k Change-Id: I61621fe92abf19967d46b7078051306073c64628
diff --git a/aos/events/logging/lzma_encoder.h b/aos/events/logging/lzma_encoder.h index 1b6a0fe..919f5fa 100644 --- a/aos/events/logging/lzma_encoder.h +++ b/aos/events/logging/lzma_encoder.h
@@ -32,7 +32,7 @@ size_t queue_size() const final { return queue_.size(); } private: - static constexpr size_t kEncodedBufferSizeBytes{1024}; + static constexpr size_t kEncodedBufferSizeBytes{4096}; void RunLzmaCode(lzma_action action);