Searched refs:linebytes (Results 1 – 1 of 1) sorted by relevance
/lvgl-3.7.0/src/extra/libs/png/ |
D | lodepng.c | 4216 size_t linebytes = lodepng_get_raw_size_idat(w, 1, bpp) - 1u; in unfilter() local 4219 size_t outindex = linebytes * y; in unfilter() 4220 size_t inindex = (1 + linebytes) * y; /*the extra filterbyte added to each row*/ in unfilter() 4223 …RN(unfilterScanline(&out[outindex], &in[inindex + 1], prevline, bytewidth, filterType, linebytes)); in unfilter() 5457 size_t linebytes = lodepng_get_raw_size_idat(w, 1, bpp) - 1u; in filter() local 5487 size_t outindex = (1 + linebytes) * y; /*the extra filterbyte added to each row*/ in filter() 5488 size_t inindex = linebytes * y; in filter() 5490 filterScanline(&out[outindex + 1], &in[inindex], prevline, linebytes, bytewidth, type); in filter() 5500 attempt[type] = (unsigned char*)lodepng_malloc(linebytes); in filter() 5509 filterScanline(attempt[type], &in[y * linebytes], prevline, linebytes, bytewidth, type); in filter() [all …]
|