FACT++  1.0
static unsigned long Huffman::numbytes_from_numbits ( unsigned long  numbits)
static

Definition at line 17 of file huffman.h.

Referenced by Huffman::Decoder::Decoder(), and Huffman::Encoder::WriteCodeTable().

18  {
19  return numbits / 8 + (numbits % 8 ? 1 : 0);
20  }

+ Here is the caller graph for this function: