GLOBAL(void)
jinit_compress_master(j_compress_ptr cinfo)
{ /* Initialize master control (includes parameter checking/processing) */
jinit_c_master_control(cinfo, FALSE/* full compression */);
/* Preprocessing */ if (!cinfo->raw_data_in) { if (cinfo->data_precision <= 8) {
jinit_color_converter(cinfo);
jinit_downsampler(cinfo);
jinit_c_prep_controller(cinfo, FALSE/* never need full buffer here */);
} elseif (cinfo->data_precision <= 12) {
j12init_color_converter(cinfo);
j12init_downsampler(cinfo);
j12init_c_prep_controller(cinfo, FALSE/* never need full buffer here */);
} else { #ifdef C_LOSSLESS_SUPPORTED
j16init_color_converter(cinfo);
j16init_downsampler(cinfo);
j16init_c_prep_controller(cinfo, FALSE/* never need full buffer here */); #else
ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision); #endif
}
}
if (cinfo->master->lossless) { #ifdef C_LOSSLESS_SUPPORTED /* Prediction, sample differencing, and point transform */ if (cinfo->data_precision <= 8)
jinit_lossless_compressor(cinfo); elseif (cinfo->data_precision <= 12)
j12init_lossless_compressor(cinfo); else
j16init_lossless_compressor(cinfo); /* Entropy encoding: either Huffman or arithmetic coding. */ if (cinfo->arith_code) {
ERREXIT(cinfo, JERR_ARITH_NOTIMPL);
} else {
jinit_lhuff_encoder(cinfo);
}
/* Need a full-image coefficient buffer in any multi-pass mode. */ if (cinfo->data_precision == 12)
j12init_c_coef_controller(cinfo, (boolean)(cinfo->num_scans > 1 ||
cinfo->optimize_coding)); else
jinit_c_coef_controller(cinfo, (boolean)(cinfo->num_scans > 1 ||
cinfo->optimize_coding)); #else
ERREXIT(cinfo, JERR_NOT_COMPILED); #endif
}
if (cinfo->data_precision <= 8)
jinit_c_main_controller(cinfo, FALSE/* never need full buffer here */); elseif (cinfo->data_precision <= 12)
j12init_c_main_controller(cinfo, FALSE/* never need full buffer here */); else #ifdef C_LOSSLESS_SUPPORTED
j16init_c_main_controller(cinfo, FALSE/* never need full buffer here */); #else
ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision); #endif
jinit_marker_writer(cinfo);
/* We can now tell the memory manager to allocate virtual arrays. */
(*cinfo->mem->realize_virt_arrays) ((j_common_ptr)cinfo);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.