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