Lines Matching full:pub
68 struct cjpeg_source_struct pub; /* public fields */ member
94 source->header.rle_file = source->pub.input_file; in start_input_rle()
179 source->pub.buffer_height = 1; in start_input_rle()
195 source->pub.buffer = (*cinfo->mem->access_virt_sarray) in get_rle_row()
217 dest_row = source->pub.buffer[0]; in get_pseudocolor_row()
239 * we set source->pub.get_pixel_rows so that subsequent calls go straight to
266 progress->pub.pass_limit = cinfo->image_height; in load_image()
267 progress->pub.pass_counter = 0; in load_image()
268 (*progress->pub.progress_monitor) ((j_common_ptr)cinfo); in load_image()
282 progress->pub.pass_counter++; in load_image()
283 (*progress->pub.progress_monitor) ((j_common_ptr)cinfo); in load_image()
306 progress->pub.pass_counter++; in load_image()
307 (*progress->pub.progress_monitor) ((j_common_ptr)cinfo); in load_image()
331 progress->pub.pass_counter++; in load_image()
332 (*progress->pub.progress_monitor) ((j_common_ptr)cinfo); in load_image()
345 source->pub.buffer = source->rle_row; in load_image()
346 source->pub.get_pixel_rows = get_pseudocolor_row; in load_image()
348 source->pub.get_pixel_rows = get_rle_row; in load_image()
353 return (*source->pub.get_pixel_rows) (cinfo, sinfo); in load_image()
382 source->pub.start_input = start_input_rle; in jinit_read_rle()
383 source->pub.finish_input = finish_input_rle; in jinit_read_rle()
384 source->pub.get_pixel_rows = load_image; in jinit_read_rle()