123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640 |
- #define JPEG_INTERNALS
- #include "jinclude.h"
- #include "jpeglib.h"
- #include "jpegcomp.h"
- #include "jconfigint.h"
- typedef enum {
- main_pass,
- huff_opt_pass,
- output_pass
- } c_pass_type;
- typedef struct {
- struct jpeg_comp_master pub;
- c_pass_type pass_type;
- int pass_number;
- int total_passes;
- int scan_number;
-
- const char *jpeg_version;
- } my_comp_master;
- typedef my_comp_master *my_master_ptr;
- #if JPEG_LIB_VERSION >= 70
- GLOBAL(void)
- jpeg_calc_jpeg_dimensions(j_compress_ptr cinfo)
- {
-
- cinfo->jpeg_width = cinfo->image_width;
- cinfo->jpeg_height = cinfo->image_height;
- cinfo->min_DCT_h_scaled_size = DCTSIZE;
- cinfo->min_DCT_v_scaled_size = DCTSIZE;
- }
- #endif
- LOCAL(void)
- initial_setup(j_compress_ptr cinfo, boolean transcode_only)
- {
- int ci;
- jpeg_component_info *compptr;
- long samplesperrow;
- JDIMENSION jd_samplesperrow;
- #if JPEG_LIB_VERSION >= 70
- #if JPEG_LIB_VERSION >= 80
- if (!transcode_only)
- #endif
- jpeg_calc_jpeg_dimensions(cinfo);
- #endif
-
- if (cinfo->_jpeg_height <= 0 || cinfo->_jpeg_width <= 0 ||
- cinfo->num_components <= 0 || cinfo->input_components <= 0)
- ERREXIT(cinfo, JERR_EMPTY_IMAGE);
-
- if ((long)cinfo->_jpeg_height > (long)JPEG_MAX_DIMENSION ||
- (long)cinfo->_jpeg_width > (long)JPEG_MAX_DIMENSION)
- ERREXIT1(cinfo, JERR_IMAGE_TOO_BIG, (unsigned int)JPEG_MAX_DIMENSION);
-
- samplesperrow = (long)cinfo->image_width * (long)cinfo->input_components;
- jd_samplesperrow = (JDIMENSION)samplesperrow;
- if ((long)jd_samplesperrow != samplesperrow)
- ERREXIT(cinfo, JERR_WIDTH_OVERFLOW);
-
- if (cinfo->data_precision != BITS_IN_JSAMPLE)
- ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
-
- if (cinfo->num_components > MAX_COMPONENTS)
- ERREXIT2(cinfo, JERR_COMPONENT_COUNT, cinfo->num_components,
- MAX_COMPONENTS);
-
- cinfo->max_h_samp_factor = 1;
- cinfo->max_v_samp_factor = 1;
- for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
- ci++, compptr++) {
- if (compptr->h_samp_factor <= 0 ||
- compptr->h_samp_factor > MAX_SAMP_FACTOR ||
- compptr->v_samp_factor <= 0 ||
- compptr->v_samp_factor > MAX_SAMP_FACTOR)
- ERREXIT(cinfo, JERR_BAD_SAMPLING);
- cinfo->max_h_samp_factor = MAX(cinfo->max_h_samp_factor,
- compptr->h_samp_factor);
- cinfo->max_v_samp_factor = MAX(cinfo->max_v_samp_factor,
- compptr->v_samp_factor);
- }
-
- for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
- ci++, compptr++) {
-
- compptr->component_index = ci;
-
- #if JPEG_LIB_VERSION >= 70
- compptr->DCT_h_scaled_size = compptr->DCT_v_scaled_size = DCTSIZE;
- #else
- compptr->DCT_scaled_size = DCTSIZE;
- #endif
-
- compptr->width_in_blocks = (JDIMENSION)
- jdiv_round_up((long)cinfo->_jpeg_width * (long)compptr->h_samp_factor,
- (long)(cinfo->max_h_samp_factor * DCTSIZE));
- compptr->height_in_blocks = (JDIMENSION)
- jdiv_round_up((long)cinfo->_jpeg_height * (long)compptr->v_samp_factor,
- (long)(cinfo->max_v_samp_factor * DCTSIZE));
-
- compptr->downsampled_width = (JDIMENSION)
- jdiv_round_up((long)cinfo->_jpeg_width * (long)compptr->h_samp_factor,
- (long)cinfo->max_h_samp_factor);
- compptr->downsampled_height = (JDIMENSION)
- jdiv_round_up((long)cinfo->_jpeg_height * (long)compptr->v_samp_factor,
- (long)cinfo->max_v_samp_factor);
-
- compptr->component_needed = TRUE;
- }
-
- cinfo->total_iMCU_rows = (JDIMENSION)
- jdiv_round_up((long)cinfo->_jpeg_height,
- (long)(cinfo->max_v_samp_factor * DCTSIZE));
- }
- #ifdef C_MULTISCAN_FILES_SUPPORTED
- LOCAL(void)
- validate_script(j_compress_ptr cinfo)
- {
- const jpeg_scan_info *scanptr;
- int scanno, ncomps, ci, coefi, thisi;
- int Ss, Se, Ah, Al;
- boolean component_sent[MAX_COMPONENTS];
- #ifdef C_PROGRESSIVE_SUPPORTED
- int *last_bitpos_ptr;
- int last_bitpos[MAX_COMPONENTS][DCTSIZE2];
-
- #endif
- if (cinfo->num_scans <= 0)
- ERREXIT1(cinfo, JERR_BAD_SCAN_SCRIPT, 0);
-
- scanptr = cinfo->scan_info;
- if (scanptr->Ss != 0 || scanptr->Se != DCTSIZE2 - 1) {
- #ifdef C_PROGRESSIVE_SUPPORTED
- cinfo->progressive_mode = TRUE;
- last_bitpos_ptr = &last_bitpos[0][0];
- for (ci = 0; ci < cinfo->num_components; ci++)
- for (coefi = 0; coefi < DCTSIZE2; coefi++)
- *last_bitpos_ptr++ = -1;
- #else
- ERREXIT(cinfo, JERR_NOT_COMPILED);
- #endif
- } else {
- cinfo->progressive_mode = FALSE;
- for (ci = 0; ci < cinfo->num_components; ci++)
- component_sent[ci] = FALSE;
- }
- for (scanno = 1; scanno <= cinfo->num_scans; scanptr++, scanno++) {
-
- ncomps = scanptr->comps_in_scan;
- if (ncomps <= 0 || ncomps > MAX_COMPS_IN_SCAN)
- ERREXIT2(cinfo, JERR_COMPONENT_COUNT, ncomps, MAX_COMPS_IN_SCAN);
- for (ci = 0; ci < ncomps; ci++) {
- thisi = scanptr->component_index[ci];
- if (thisi < 0 || thisi >= cinfo->num_components)
- ERREXIT1(cinfo, JERR_BAD_SCAN_SCRIPT, scanno);
-
- if (ci > 0 && thisi <= scanptr->component_index[ci - 1])
- ERREXIT1(cinfo, JERR_BAD_SCAN_SCRIPT, scanno);
- }
-
- Ss = scanptr->Ss;
- Se = scanptr->Se;
- Ah = scanptr->Ah;
- Al = scanptr->Al;
- if (cinfo->progressive_mode) {
- #ifdef C_PROGRESSIVE_SUPPORTED
-
- #if BITS_IN_JSAMPLE == 8
- #define MAX_AH_AL 10
- #else
- #define MAX_AH_AL 13
- #endif
- if (Ss < 0 || Ss >= DCTSIZE2 || Se < Ss || Se >= DCTSIZE2 ||
- Ah < 0 || Ah > MAX_AH_AL || Al < 0 || Al > MAX_AH_AL)
- ERREXIT1(cinfo, JERR_BAD_PROG_SCRIPT, scanno);
- if (Ss == 0) {
- if (Se != 0)
- ERREXIT1(cinfo, JERR_BAD_PROG_SCRIPT, scanno);
- } else {
- if (ncomps != 1)
- ERREXIT1(cinfo, JERR_BAD_PROG_SCRIPT, scanno);
- }
- for (ci = 0; ci < ncomps; ci++) {
- last_bitpos_ptr = &last_bitpos[scanptr->component_index[ci]][0];
- if (Ss != 0 && last_bitpos_ptr[0] < 0)
- ERREXIT1(cinfo, JERR_BAD_PROG_SCRIPT, scanno);
- for (coefi = Ss; coefi <= Se; coefi++) {
- if (last_bitpos_ptr[coefi] < 0) {
-
- if (Ah != 0)
- ERREXIT1(cinfo, JERR_BAD_PROG_SCRIPT, scanno);
- } else {
-
- if (Ah != last_bitpos_ptr[coefi] || Al != Ah - 1)
- ERREXIT1(cinfo, JERR_BAD_PROG_SCRIPT, scanno);
- }
- last_bitpos_ptr[coefi] = Al;
- }
- }
- #endif
- } else {
-
- if (Ss != 0 || Se != DCTSIZE2 - 1 || Ah != 0 || Al != 0)
- ERREXIT1(cinfo, JERR_BAD_PROG_SCRIPT, scanno);
-
- for (ci = 0; ci < ncomps; ci++) {
- thisi = scanptr->component_index[ci];
- if (component_sent[thisi])
- ERREXIT1(cinfo, JERR_BAD_SCAN_SCRIPT, scanno);
- component_sent[thisi] = TRUE;
- }
- }
- }
-
- if (cinfo->progressive_mode) {
- #ifdef C_PROGRESSIVE_SUPPORTED
-
- for (ci = 0; ci < cinfo->num_components; ci++) {
- if (last_bitpos[ci][0] < 0)
- ERREXIT(cinfo, JERR_MISSING_DATA);
- }
- #endif
- } else {
- for (ci = 0; ci < cinfo->num_components; ci++) {
- if (!component_sent[ci])
- ERREXIT(cinfo, JERR_MISSING_DATA);
- }
- }
- }
- #endif
- LOCAL(void)
- select_scan_parameters(j_compress_ptr cinfo)
- {
- int ci;
- #ifdef C_MULTISCAN_FILES_SUPPORTED
- if (cinfo->scan_info != NULL) {
-
- my_master_ptr master = (my_master_ptr)cinfo->master;
- const jpeg_scan_info *scanptr = cinfo->scan_info + master->scan_number;
- cinfo->comps_in_scan = scanptr->comps_in_scan;
- for (ci = 0; ci < scanptr->comps_in_scan; ci++) {
- cinfo->cur_comp_info[ci] =
- &cinfo->comp_info[scanptr->component_index[ci]];
- }
- cinfo->Ss = scanptr->Ss;
- cinfo->Se = scanptr->Se;
- cinfo->Ah = scanptr->Ah;
- cinfo->Al = scanptr->Al;
- } else
- #endif
- {
-
- if (cinfo->num_components > MAX_COMPS_IN_SCAN)
- ERREXIT2(cinfo, JERR_COMPONENT_COUNT, cinfo->num_components,
- MAX_COMPS_IN_SCAN);
- cinfo->comps_in_scan = cinfo->num_components;
- for (ci = 0; ci < cinfo->num_components; ci++) {
- cinfo->cur_comp_info[ci] = &cinfo->comp_info[ci];
- }
- cinfo->Ss = 0;
- cinfo->Se = DCTSIZE2 - 1;
- cinfo->Ah = 0;
- cinfo->Al = 0;
- }
- }
- LOCAL(void)
- per_scan_setup(j_compress_ptr cinfo)
- {
- int ci, mcublks, tmp;
- jpeg_component_info *compptr;
- if (cinfo->comps_in_scan == 1) {
-
- compptr = cinfo->cur_comp_info[0];
-
- cinfo->MCUs_per_row = compptr->width_in_blocks;
- cinfo->MCU_rows_in_scan = compptr->height_in_blocks;
-
- compptr->MCU_width = 1;
- compptr->MCU_height = 1;
- compptr->MCU_blocks = 1;
- compptr->MCU_sample_width = DCTSIZE;
- compptr->last_col_width = 1;
-
- tmp = (int)(compptr->height_in_blocks % compptr->v_samp_factor);
- if (tmp == 0) tmp = compptr->v_samp_factor;
- compptr->last_row_height = tmp;
-
- cinfo->blocks_in_MCU = 1;
- cinfo->MCU_membership[0] = 0;
- } else {
-
- if (cinfo->comps_in_scan <= 0 || cinfo->comps_in_scan > MAX_COMPS_IN_SCAN)
- ERREXIT2(cinfo, JERR_COMPONENT_COUNT, cinfo->comps_in_scan,
- MAX_COMPS_IN_SCAN);
-
- cinfo->MCUs_per_row = (JDIMENSION)
- jdiv_round_up((long)cinfo->_jpeg_width,
- (long)(cinfo->max_h_samp_factor * DCTSIZE));
- cinfo->MCU_rows_in_scan = (JDIMENSION)
- jdiv_round_up((long)cinfo->_jpeg_height,
- (long)(cinfo->max_v_samp_factor * DCTSIZE));
- cinfo->blocks_in_MCU = 0;
- for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
- compptr = cinfo->cur_comp_info[ci];
-
- compptr->MCU_width = compptr->h_samp_factor;
- compptr->MCU_height = compptr->v_samp_factor;
- compptr->MCU_blocks = compptr->MCU_width * compptr->MCU_height;
- compptr->MCU_sample_width = compptr->MCU_width * DCTSIZE;
-
- tmp = (int)(compptr->width_in_blocks % compptr->MCU_width);
- if (tmp == 0) tmp = compptr->MCU_width;
- compptr->last_col_width = tmp;
- tmp = (int)(compptr->height_in_blocks % compptr->MCU_height);
- if (tmp == 0) tmp = compptr->MCU_height;
- compptr->last_row_height = tmp;
-
- mcublks = compptr->MCU_blocks;
- if (cinfo->blocks_in_MCU + mcublks > C_MAX_BLOCKS_IN_MCU)
- ERREXIT(cinfo, JERR_BAD_MCU_SIZE);
- while (mcublks-- > 0) {
- cinfo->MCU_membership[cinfo->blocks_in_MCU++] = ci;
- }
- }
- }
-
-
- if (cinfo->restart_in_rows > 0) {
- long nominal = (long)cinfo->restart_in_rows * (long)cinfo->MCUs_per_row;
- cinfo->restart_interval = (unsigned int)MIN(nominal, 65535L);
- }
- }
- METHODDEF(void)
- prepare_for_pass(j_compress_ptr cinfo)
- {
- my_master_ptr master = (my_master_ptr)cinfo->master;
- switch (master->pass_type) {
- case main_pass:
-
- select_scan_parameters(cinfo);
- per_scan_setup(cinfo);
- if (!cinfo->raw_data_in) {
- (*cinfo->cconvert->start_pass) (cinfo);
- (*cinfo->downsample->start_pass) (cinfo);
- (*cinfo->prep->start_pass) (cinfo, JBUF_PASS_THRU);
- }
- (*cinfo->fdct->start_pass) (cinfo);
- (*cinfo->entropy->start_pass) (cinfo, cinfo->optimize_coding);
- (*cinfo->coef->start_pass) (cinfo,
- (master->total_passes > 1 ?
- JBUF_SAVE_AND_PASS : JBUF_PASS_THRU));
- (*cinfo->main->start_pass) (cinfo, JBUF_PASS_THRU);
- if (cinfo->optimize_coding) {
-
- master->pub.call_pass_startup = FALSE;
- } else {
-
- master->pub.call_pass_startup = TRUE;
- }
- break;
- #ifdef ENTROPY_OPT_SUPPORTED
- case huff_opt_pass:
-
- select_scan_parameters(cinfo);
- per_scan_setup(cinfo);
- if (cinfo->Ss != 0 || cinfo->Ah == 0 || cinfo->arith_code) {
- (*cinfo->entropy->start_pass) (cinfo, TRUE);
- (*cinfo->coef->start_pass) (cinfo, JBUF_CRANK_DEST);
- master->pub.call_pass_startup = FALSE;
- break;
- }
-
- master->pass_type = output_pass;
- master->pass_number++;
- #endif
- FALLTHROUGH
- case output_pass:
-
-
- if (!cinfo->optimize_coding) {
- select_scan_parameters(cinfo);
- per_scan_setup(cinfo);
- }
- (*cinfo->entropy->start_pass) (cinfo, FALSE);
- (*cinfo->coef->start_pass) (cinfo, JBUF_CRANK_DEST);
-
- if (master->scan_number == 0)
- (*cinfo->marker->write_frame_header) (cinfo);
- (*cinfo->marker->write_scan_header) (cinfo);
- master->pub.call_pass_startup = FALSE;
- break;
- default:
- ERREXIT(cinfo, JERR_NOT_COMPILED);
- }
- master->pub.is_last_pass = (master->pass_number == master->total_passes - 1);
-
- if (cinfo->progress != NULL) {
- cinfo->progress->completed_passes = master->pass_number;
- cinfo->progress->total_passes = master->total_passes;
- }
- }
- METHODDEF(void)
- pass_startup(j_compress_ptr cinfo)
- {
- cinfo->master->call_pass_startup = FALSE;
- (*cinfo->marker->write_frame_header) (cinfo);
- (*cinfo->marker->write_scan_header) (cinfo);
- }
- METHODDEF(void)
- finish_pass_master(j_compress_ptr cinfo)
- {
- my_master_ptr master = (my_master_ptr)cinfo->master;
-
- (*cinfo->entropy->finish_pass) (cinfo);
-
- switch (master->pass_type) {
- case main_pass:
-
- master->pass_type = output_pass;
- if (!cinfo->optimize_coding)
- master->scan_number++;
- break;
- case huff_opt_pass:
-
- master->pass_type = output_pass;
- break;
- case output_pass:
-
- if (cinfo->optimize_coding)
- master->pass_type = huff_opt_pass;
- master->scan_number++;
- break;
- }
- master->pass_number++;
- }
- GLOBAL(void)
- jinit_c_master_control(j_compress_ptr cinfo, boolean transcode_only)
- {
- my_master_ptr master;
- master = (my_master_ptr)
- (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE,
- sizeof(my_comp_master));
- cinfo->master = (struct jpeg_comp_master *)master;
- master->pub.prepare_for_pass = prepare_for_pass;
- master->pub.pass_startup = pass_startup;
- master->pub.finish_pass = finish_pass_master;
- master->pub.is_last_pass = FALSE;
-
- initial_setup(cinfo, transcode_only);
- if (cinfo->scan_info != NULL) {
- #ifdef C_MULTISCAN_FILES_SUPPORTED
- validate_script(cinfo);
- #else
- ERREXIT(cinfo, JERR_NOT_COMPILED);
- #endif
- } else {
- cinfo->progressive_mode = FALSE;
- cinfo->num_scans = 1;
- }
- if (cinfo->progressive_mode && !cinfo->arith_code)
- cinfo->optimize_coding = TRUE;
-
- if (transcode_only) {
-
- if (cinfo->optimize_coding)
- master->pass_type = huff_opt_pass;
- else
- master->pass_type = output_pass;
- } else {
-
- master->pass_type = main_pass;
- }
- master->scan_number = 0;
- master->pass_number = 0;
- if (cinfo->optimize_coding)
- master->total_passes = cinfo->num_scans * 2;
- else
- master->total_passes = cinfo->num_scans;
- master->jpeg_version = PACKAGE_NAME " version " VERSION " (build " BUILD ")";
- }
|