Commit 9c3e1d45 authored by Max Kellermann's avatar Max Kellermann

fs/io/GunzipReader: increase buffer size to 64 kB

Reduces I/O overhead while reading a compressed database file.
parent 60f21162
ver 0.21.22 (not yet released)
* database
- simple: reduce I/O overhead while reading database file
* input
- curl: fix streaming errors on Android
* playlist
......
......@@ -36,7 +36,7 @@ class GunzipReader final : public Reader {
z_stream z;
StaticFifoBuffer<Bytef, 4096> buffer;
StaticFifoBuffer<Bytef, 65536> buffer;
public:
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment