Home | History | Annotate | Download | only in jpeg-6b

Lines Matching defs:dstinfo

337   struct jpeg_compress_struct dstinfo;
361 dstinfo.err = jpeg_std_error(&jdsterr);
362 jpeg_create_compress(&dstinfo);
379 file_index = parse_switches(&dstinfo, argc, argv, 0, FALSE);
381 srcinfo.mem->max_memory_to_use = dstinfo.mem->max_memory_to_use;
430 start_progress_monitor((j_common_ptr) &dstinfo, &progress);
453 jpeg_copy_critical_parameters(&srcinfo, &dstinfo);
459 dst_coef_arrays = jtransform_adjust_parameters(&srcinfo, &dstinfo,
467 file_index = parse_switches(&dstinfo, argc, argv, 0, TRUE);
470 jpeg_stdio_dest(&dstinfo, output_file);
473 jpeg_write_coefficients(&dstinfo, dst_coef_arrays);
476 jcopy_markers_execute(&srcinfo, &dstinfo, copyoption);
480 jtransform_execute_transformation(&srcinfo, &dstinfo,
486 jpeg_finish_compress(&dstinfo);
487 jpeg_destroy_compress(&dstinfo);
498 end_progress_monitor((j_common_ptr) &dstinfo);