test
Dependencies: Nanopb iSerial mbed BaseJpegDecode FatFileSystem SDFileSystem RingBuffer Camera_LS_Y201
Diff: extlib/BaseJpegDecode/HuffmanDecode.h
- Revision:
- 0:d69efd0ee139
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/extlib/BaseJpegDecode/HuffmanDecode.h Thu Sep 18 15:21:47 2014 +0000 @@ -0,0 +1,18 @@ +#ifndef HUFFMAN_DECODE_H +#define HUFFMAN_DECODE_H +#include "BitPattern.h" + +typedef struct sthuff { + int8_t run; + int8_t value_size; + int8_t code_size; + uint16_t code; +} Huff; + +class HuffmanDecode { +public: + Huff* Lookup(int tc, int th, BitPattern* bitpat); + int getValue(Huff* huff, BitPattern* bitpat); +}; + +#endif // HUFFMAN_DECODE_H \ No newline at end of file