mirror of
https://github.com/google/brotli.git
synced 2026-07-08 17:56:58 +00:00
Java port for encoder coming up? #147
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 @kjatin on GitHub (Nov 4, 2016).
I see the decoder has been ported to Java recently. Are there plans for porting encoder to Java as well?
@eustas commented on GitHub (Nov 9, 2016):
Currently we have no plans for Java encoder port. But, for sure, we will have JNI bindings.
Encoder is complex and we try to use all the power of CPU to be competitive.
With Java it is much harder to match plain C performance.
However, it is possible that some subset of encoder (levels 0, 1, or something similar) will be ported to support specific use cases.
@dominikhlbg commented on GitHub (Mar 17, 2017):
I did release a java encoder of brotli. https://github.com/dominikhlbg/BrotliHaxe
@eustas commented on GitHub (Aug 24, 2017):
Merging into #405