ps2dev / ps2-packer

Create packed ELF files to run on the PS2
GNU General Public License v2.0
72 stars 28 forks source link

Add LZ4 compression to ps2-packer #22

Closed rickgaiser closed 4 years ago

rickgaiser commented 4 years ago

Just for fun I tried to add LZ4 to ps2-packer. I was hoping to see great compression but the default compression (n2e) is hard to beat. On the other hand LZ4 extremely fast compared to n2e.

I've added the compression results to the readme: 2300752 - opl_stripped.elf 1507004 - OPNPS2LD-lzo.ELF 1278356 - OPNPS2LD-lz4.ELF 1108595 - OPNPS2LD-zlib.ELF 1107084 - OPNPS2LD-n2b.ELF 1091020 - OPNPS2LD-n2d.ELF 1083928 - OPNPS2LD-n2e.ELF

rickgaiser commented 4 years ago

Any comments or merge?