Home
last modified time | relevance | path

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

/lvgl-latest/src/libs/lodepng/
Dlodepng.c4960 size_t linebytes = lodepng_get_raw_size_idat(w, 1, bpp) - 1u; in unfilter() local
4963 size_t outindex = linebytes * y; in unfilter()
4964 size_t inindex = (1 + linebytes) * y; /*the extra filterbyte added to each row*/ in unfilter()
4967 …RN(unfilterScanline(&out[outindex], &in[inindex + 1], prevline, bytewidth, filterType, linebytes)); in unfilter()
6419 size_t linebytes = lodepng_get_raw_size_idat(w, 1, bpp) - 1u; in filter() local
6449 size_t outindex = (1 + linebytes) * y; /*the extra filterbyte added to each row*/ in filter()
6450 size_t inindex = linebytes * y; in filter()
6452 filterScanline(&out[outindex + 1], &in[inindex], prevline, linebytes, bytewidth, type); in filter()
6463 attempt[type] = (unsigned char *)lodepng_malloc(linebytes); in filter()
6472 … filterScanline(attempt[type], &in[y * linebytes], prevline, linebytes, bytewidth, type); in filter()
[all …]