Home
last modified time | relevance | path

Searched refs:jd (Results 1 – 3 of 3) sorted by relevance

/lvgl-3.6.0/src/extra/libs/sjpg/
Dtjpgd.c133 JDEC* jd, /* Pointer to the decompressor object */ in alloc_pool() argument
142 if (jd->sz_pool >= ndata) { in alloc_pool()
143 jd->sz_pool -= ndata; in alloc_pool()
144 rp = (char*)jd->pool; /* Get start of available memory pool */ in alloc_pool()
145 jd->pool = (void*)(rp + ndata); /* Allocate requierd bytes */ in alloc_pool()
159 JDEC* jd, /* Pointer to the decompressor object */ in create_qt_tbl() argument
175 pb = alloc_pool(jd, 64 * sizeof (int32_t));/* Allocate a memory block for the table */ in create_qt_tbl()
177 jd->qttbl[i] = pb; /* Register the table */ in create_qt_tbl()
195 JDEC* jd, /* Pointer to the decompressor object */ in create_huffman_tbl() argument
212 pb = alloc_pool(jd, 16); /* Allocate a memory block for the bit distribution table */ in create_huffman_tbl()
[all …]
Dtjpgd.h84 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);
Dlv_sjpg.c113 static size_t input_func(JDEC * jd, uint8_t * buff, size_t ndata);
283 static int img_data_cb(JDEC * jd, void * data, JRECT * rect) in img_data_cb() argument
285 io_source_t * io = jd->device; in img_data_cb()
302 static size_t input_func(JDEC * jd, uint8_t * buff, size_t ndata) in input_func() argument
304 io_source_t * io = jd->device; in input_func()