Home | History | Annotate | Download | only in jpeg

Lines Matching refs:image

48  * For now, we ignore any alpha channel in the image.
56 * Since RLE stores scanlines bottom-to-top, we have to invert the image
58 * incoming image into a virtual array on the first get_pixel_rows call,
68 jvirt_sarray_ptr image; /* virtual array to hold the image */
77 * Read the file header; return image size and component count.
163 /* request a virtual array to hold the image */
164 source->image = (*cinfo->mem->request_virt_sarray)
182 * Called only after load_image has read the image into the virtual array.
193 ((j_common_ptr) cinfo, source->image, source->row, (JDIMENSION) 1, FALSE);
200 * Called only after load_image has read the image into the virtual array.
217 ((j_common_ptr) cinfo, source->image, source->row, (JDIMENSION) 1, FALSE);
231 * Load the image into a virtual array. We have to do this because RLE
276 ((j_common_ptr) cinfo, source->image, row, (JDIMENSION) 1, TRUE);
291 ((j_common_ptr) cinfo, source->image, row, (JDIMENSION) 1, TRUE);
314 ((j_common_ptr) cinfo, source->image, row, (JDIMENSION) 1, TRUE);