We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The current lossless webp decoding logic does a branch for almost every single bit in the file:
https://github.com/image-rs/image/blob/038bc30b9b9b1daf809452523b557db58f9e781b/src/codecs/webp/huffman.rs#L189-L192
Switching to a more efficient huffman implementation would likely be orders of magnitude faster
The text was updated successfully, but these errors were encountered:
image::utils::clamp
BoolReader::read_bool
Successfully merging a pull request may close this issue.
The current lossless webp decoding logic does a branch for almost every single bit in the file:
https://github.com/image-rs/image/blob/038bc30b9b9b1daf809452523b557db58f9e781b/src/codecs/webp/huffman.rs#L189-L192
Switching to a more efficient huffman implementation would likely be orders of magnitude faster
The text was updated successfully, but these errors were encountered: