Home | History | Annotate | Download | only in jpeg

Lines Matching refs:cinfo

30 jinit_compress_master (j_compress_ptr cinfo)
33 jinit_c_master_control(cinfo, FALSE /* full compression */);
36 if (! cinfo->raw_data_in) {
37 jinit_color_converter(cinfo);
38 jinit_downsampler(cinfo);
39 jinit_c_prep_controller(cinfo, FALSE /* never need full buffer here */);
42 jinit_forward_dct(cinfo);
44 if (cinfo->arith_code) {
45 ERREXIT(cinfo, JERR_ARITH_NOTIMPL);
47 if (cinfo->progressive_mode) {
49 jinit_phuff_encoder(cinfo);
51 ERREXIT(cinfo, JERR_NOT_COMPILED);
54 jinit_huff_encoder(cinfo);
58 jinit_c_coef_controller(cinfo,
59 (boolean) (cinfo->num_scans > 1 || cinfo->optimize_coding));
60 jinit_c_main_controller(cinfo, FALSE /* never need full buffer here */);
62 jinit_marker_writer(cinfo);
65 (*cinfo->mem->realize_virt_arrays) ((j_common_ptr) cinfo);
71 (*cinfo->marker->write_file_header) (cinfo);