Lines Matching defs:cinfo
34 jinit_compress_master(j_compress_ptr cinfo)
37 jinit_c_master_control(cinfo, FALSE /* full compression */);
40 if (!cinfo->raw_data_in) {
41 jinit_color_converter(cinfo);
42 jinit_downsampler(cinfo);
43 jinit_c_prep_controller(cinfo, FALSE /* never need full buffer here */);
46 jinit_forward_dct(cinfo);
48 if (cinfo->arith_code) {
50 jinit_arith_encoder(cinfo);
52 ERREXIT(cinfo, JERR_ARITH_NOTIMPL);
55 if (cinfo->progressive_mode) {
57 jinit_phuff_encoder(cinfo);
59 ERREXIT(cinfo, JERR_NOT_COMPILED);
62 jinit_huff_encoder(cinfo);
66 jinit_c_coef_controller(cinfo, (boolean)(cinfo->num_scans > 1 ||
67 cinfo->optimize_coding));
68 jinit_c_main_controller(cinfo, FALSE /* never need full buffer here */);
70 jinit_marker_writer(cinfo);
73 (*cinfo->mem->realize_virt_arrays) ((j_common_ptr)cinfo);
79 (*cinfo->marker->write_file_header) (cinfo);