-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
zstd support #75
Comments
The biggest advantage of zstd should be its decompression speed and system overhead, which is close to the speed of copying. Higher speed means lower cpu overhead. It has important value in some low-end devices, such as fanless cpu, portable devices,Can reduce stuttering and increase battery life.Since ppsspp already supports zstd, why not try to let cso also support it ? :) |
That's all achieved with ZSO. LZ4 is faster than ZSTD. |
Although lz4 is faster than ZSTD, the compression rate of zstd is between deflate and lzma.zstd is a balance of efficiency and effectiveness. |
Your post from 2022 only mentions decompression speed and that is better with LZ4 than Zstd. |
Putting aside that LZMA2 decompression speed got some noticeable bump since Igor started to ship assembly optimizations some years ago, Zstd decompression speed is 4-5 times better than lzma while still staying fairly close to its compression ratio. |
That's true, I stand corrected.
I don't think it will make much difference to other platforms (not Intel or AMD) like is the case with the PSP, PS2 or PS3. |
Indeed, I'm not even sure if x86 got all of them lol. |
Hi. Are there plans to include zstd support in maxcso? I've read that it can compress better than lzo without beign as slow to compress as deflate.
The text was updated successfully, but these errors were encountered: