mirror of
https://github.com/google/brotli.git
synced 2026-07-08 17:56:58 +00:00
Particular file are not identical after compression and decompression with quality 1 #31
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @tesseract2048 on GitHub (Sep 24, 2015).
I have a random generated file: https://drive.google.com/file/d/0By7bqJ83IOI8WUU5T2xXTzhqMjA/view?usp=sharing
Length of the file is 8192000.
Compress it with:
bro --quality 1 --input bro_sample_0 --output bro_sample_0.broThen decompress with:
bro --decompress --input bro_sample_0.bro --output bro_sample_0.1And I got a file with length 20774912, which does not make sense.
@eustas commented on GitHub (Sep 24, 2015):
We've found the problem. The fix will be rolled out soon.
@eustas commented on GitHub (Sep 24, 2015):
This should be fixed now (https://github.com/google/brotli/pull/164)
@tesseract2048 commented on GitHub (Sep 25, 2015):
Verified, thanks.