diff options
Diffstat (limited to 'src/lib/util/huffman.c')
-rw-r--r-- | src/lib/util/huffman.c | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/src/lib/util/huffman.c b/src/lib/util/huffman.c index 7e6d1906456..7f804aec222 100644 --- a/src/lib/util/huffman.c +++ b/src/lib/util/huffman.c @@ -730,10 +730,20 @@ huffman_8bit_decoder::huffman_8bit_decoder() { } - -//------------------------------------------------- -// decode - decode a full buffer -//------------------------------------------------- +/** + * @fn huffman_error huffman_8bit_decoder::decode(const UINT8 *source, UINT32 slength, UINT8 *dest, UINT32 dlength) + * + * @brief ------------------------------------------------- + * decode - decode a full buffer + * -------------------------------------------------. + * + * @param source Source for the. + * @param slength The slength. + * @param [in,out] dest If non-null, destination for the. + * @param dlength The dlength. + * + * @return A huffman_error. + */ huffman_error huffman_8bit_decoder::decode(const UINT8 *source, UINT32 slength, UINT8 *dest, UINT32 dlength) { |