19:19
I found an open source profiler which is under the GNU GPL and is officially supported by OpenJDK, called VisualVM. With this I can determine where some slow code areas are.
19:24
Appears that the huffman tree code is slow in getValue
.
19:59
I need a way to have a faster lookup of huffman values.
21:29
I will need a way to have much faster huffman table lookup. Likely remove the traverser and instead have a way to get a direct bit lookup somehow. I do wonder though if there would be a way to make it so the table despite being like a binary tree can do better.