Huffman and arithmetic-encoded data is used in many different compression programs for entropy encoding. They create a new encoding for symbols to be compressed that may not align to byte boundary. This means that when the data has to be decompressed, it must be read bit by bit. However, that seems to be very very slow process.
How is Huffman and arithmetic-encoded data decompression usually sped up? Do we create some sort of table as with CRC calculations, that enables us to read in data per byte and then decode the symbols or is it always really read in a per-bit basis?