Lines Matching full:padded
3908 reduced image when without filter bytes but with padded scanlines
3913 "padded" is only relevant if bpp is less than 8 and a scanline or image does not
3937 /*bits padded if needed to fill full byte at end of each scanline*/
3939 /*only padded at end of reduced image*/
4208 This function converts the filtered-padded-interlaced data into pure 2D image buffer with the PNG's colortype.
5540 This function converts the pure 2D image with the PNG's colortype, into filtered-padded-interlaced data. Steps:
5558 unsigned char* padded = (unsigned char*)lodepng_malloc(h * ((w * bpp + 7) / 8));
5559 if(!padded) error = 83; /*alloc fail*/
5562 addPaddingBits(padded, in, ((w * bpp + 7) / 8) * 8, w * bpp, h);
5563 error = filter(*out, padded, w, h, &info_png->color, settings);
5565 lodepng_free(padded);
5598 unsigned char* padded = (unsigned char*)lodepng_malloc(padded_passstart[i + 1] - padded_passstart[i]);
5599 if(!padded) ERROR_BREAK(83); /*alloc fail*/
5600 addPaddingBits(padded, &adam7[passstart[i]],
5602 error = filter(&(*out)[filter_passstart[i]], padded,
5604 lodepng_free(padded);