webmproject / sjpeg

SimpleJPEG: simple jpeg encoder
Apache License 2.0
72 stars 13 forks source link

HuffmanTable: make nb_syms_ able to store 256 symbols #125

Closed skal65535 closed 5 months ago

skal65535 commented 5 months ago

Right now, we're not using all of the 256 possible symbols, but with progressive we could. Makeing nbsyms be an int will avoid a future bug.

Also: remove unused BuildHuffmanCodes() declaration.