Lines Matching refs:uint8_t
21 typedef uint8_t jd_yuv_t;
50 uint8_t* dptr; /* Current data read ptr */
51 uint8_t* inbuf; /* Bit stream input buffer */
52 uint8_t dbit; /* Number of bits availavble in wreg or reading bit mask */
53 uint8_t scale; /* Output scaling ratio */
54 uint8_t msx, msy; /* MCU size in unit of block (width, height) */
55 uint8_t qtid[3]; /* Quantization table ID of each component, Y, Cb, Cr */
56 uint8_t ncomp; /* Number of color components 1:grayscale, 3:color */
60 uint8_t* huffbits[2][2]; /* Huffman bit distribution tables [id][dcac] */
62 uint8_t* huffdata[2][2]; /* Huffman decoded data tables [id][dcac] */
66 uint8_t marker; /* Detected marker (0:None) */
68 uint8_t longofs[2][2]; /* Table offset of long code [id][dcac] */
70 uint8_t* hufflut_dc[2]; /* Fast huffman decode tables for DC short code [id] */
77 size_t (*infunc)(JDEC*, uint8_t*, size_t); /* Pointer to jpeg stream input function */
84 JRESULT jd_prepare (JDEC* jd, size_t (*infunc)(JDEC*,uint8_t*,size_t), void* pool, size_t sz_pool, …
85 JRESULT jd_decomp (JDEC* jd, int (*outfunc)(JDEC*,void*,JRECT*), uint8_t scale);