jcmaster.c
上传用户:looem2003
上传日期:2014-07-20
资源大小:13733k
文件大小:20k
源码类别:

打印编程

开发平台:

Visual C++

  1. /*
  2.  * jcmaster.c
  3.  *
  4.  * Copyright (C) 1991-1997, Thomas G. Lane.
  5.  * This file is part of the Independent JPEG Group's software.
  6.  * For conditions of distribution and use, see the accompanying README file.
  7.  *
  8.  * This file contains master control logic for the JPEG compressor.
  9.  * These routines are concerned with parameter validation, initial setup,
  10.  * and inter-pass control (determining the number of passes and the work 
  11.  * to be done in each pass).
  12.  */
  13. #define JPEG_INTERNALS
  14. #include "jinclude.h"
  15. #include "jpeglib.h"
  16. /* Private state */
  17. typedef enum {
  18. main_pass, /* input data, also do first output step */
  19. huff_opt_pass, /* Huffman code optimization pass */
  20. output_pass /* data output pass */
  21. } c_pass_type;
  22. typedef struct {
  23.   struct jpeg_comp_master pub; /* public fields */
  24.   c_pass_type pass_type; /* the type of the current pass */
  25.   int pass_number; /* # of passes completed */
  26.   int total_passes; /* total # of passes needed */
  27.   int scan_number; /* current index in scan_info[] */
  28. } my_comp_master;
  29. typedef my_comp_master * my_master_ptr;
  30. /*
  31.  * Support routines that do various essential calculations.
  32.  */
  33. LOCAL(void)
  34. initial_setup (j_compress_ptr cinfo)
  35. /* Do computations that are needed before master selection phase */
  36. {
  37.   int ci;
  38.   jpeg_component_info *compptr;
  39.   long samplesperrow;
  40.   JDIMENSION jd_samplesperrow;
  41.   /* Sanity check on image dimensions */
  42.   if (cinfo->image_height <= 0 || cinfo->image_width <= 0
  43.       || cinfo->num_components <= 0 || cinfo->input_components <= 0)
  44.     ERREXIT(cinfo, JERR_EMPTY_IMAGE);
  45.   /* Make sure image isn't bigger than I can handle */
  46.   if ((long) cinfo->image_height > (long) JPEG_MAX_DIMENSION ||
  47.       (long) cinfo->image_width > (long) JPEG_MAX_DIMENSION)
  48.     ERREXIT1(cinfo, JERR_IMAGE_TOO_BIG, (unsigned int) JPEG_MAX_DIMENSION);
  49.   /* Width of an input scanline must be representable as JDIMENSION. */
  50.   samplesperrow = (long) cinfo->image_width * (long) cinfo->input_components;
  51.   jd_samplesperrow = (JDIMENSION) samplesperrow;
  52.   if ((long) jd_samplesperrow != samplesperrow)
  53.     ERREXIT(cinfo, JERR_WIDTH_OVERFLOW);
  54.   /* For now, precision must match compiled-in value... */
  55.   if (cinfo->data_precision != BITS_IN_JSAMPLE)
  56.     ERREXIT1(cinfo, JERR_BAD_PRECISION, cinfo->data_precision);
  57.   /* Check that number of components won't exceed internal array sizes */
  58.   if (cinfo->num_components > MAX_COMPONENTS)
  59.     ERREXIT2(cinfo, JERR_COMPONENT_COUNT, cinfo->num_components,
  60.      MAX_COMPONENTS);
  61.   /* Compute maximum sampling factors; check factor validity */
  62.   cinfo->max_h_samp_factor = 1;
  63.   cinfo->max_v_samp_factor = 1;
  64.   for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  65.        ci++, compptr++) {
  66.     if (compptr->h_samp_factor<=0 || compptr->h_samp_factor>MAX_SAMP_FACTOR ||
  67. compptr->v_samp_factor<=0 || compptr->v_samp_factor>MAX_SAMP_FACTOR)
  68.       ERREXIT(cinfo, JERR_BAD_SAMPLING);
  69.     cinfo->max_h_samp_factor = MAX(cinfo->max_h_samp_factor,
  70.    compptr->h_samp_factor);
  71.     cinfo->max_v_samp_factor = MAX(cinfo->max_v_samp_factor,
  72.    compptr->v_samp_factor);
  73.   }
  74.   /* Compute dimensions of components */
  75.   for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  76.        ci++, compptr++) {
  77.     /* Fill in the correct component_index value; don't rely on application */
  78.     compptr->component_index = ci;
  79.     /* For compression, we never do DCT scaling. */
  80.     compptr->DCT_scaled_size = DCTSIZE;
  81.     /* Size in DCT blocks */
  82.     compptr->width_in_blocks = (JDIMENSION)
  83.       jdiv_round_up((long) cinfo->image_width * (long) compptr->h_samp_factor,
  84.     (long) (cinfo->max_h_samp_factor * DCTSIZE));
  85.     compptr->height_in_blocks = (JDIMENSION)
  86.       jdiv_round_up((long) cinfo->image_height * (long) compptr->v_samp_factor,
  87.     (long) (cinfo->max_v_samp_factor * DCTSIZE));
  88.     /* Size in samples */
  89.     compptr->downsampled_width = (JDIMENSION)
  90.       jdiv_round_up((long) cinfo->image_width * (long) compptr->h_samp_factor,
  91.     (long) cinfo->max_h_samp_factor);
  92.     compptr->downsampled_height = (JDIMENSION)
  93.       jdiv_round_up((long) cinfo->image_height * (long) compptr->v_samp_factor,
  94.     (long) cinfo->max_v_samp_factor);
  95.     /* Mark component needed (this flag isn't actually used for compression) */
  96.     compptr->component_needed = TRUE;
  97.   }
  98.   /* Compute number of fully interleaved MCU rows (number of times that
  99.    * main controller will call coefficient controller).
  100.    */
  101.   cinfo->total_iMCU_rows = (JDIMENSION)
  102.     jdiv_round_up((long) cinfo->image_height,
  103.   (long) (cinfo->max_v_samp_factor*DCTSIZE));
  104. }
  105. #ifdef C_MULTISCAN_FILES_SUPPORTED
  106. LOCAL(void)
  107. validate_script (j_compress_ptr cinfo)
  108. /* Verify that the scan script in cinfo->scan_info[] is valid; also
  109.  * determine whether it uses progressive JPEG, and set cinfo->progressive_mode.
  110.  */
  111. {
  112.   const jpeg_scan_info * scanptr;
  113.   int scanno, ncomps, ci, coefi, thisi;
  114.   int Ss, Se, Ah, Al;
  115.   boolean component_sent[MAX_COMPONENTS];
  116. #ifdef C_PROGRESSIVE_SUPPORTED
  117.   int * last_bitpos_ptr;
  118.   int last_bitpos[MAX_COMPONENTS][DCTSIZE2];
  119.   /* -1 until that coefficient has been seen; then last Al for it */
  120. #endif
  121.   if (cinfo->num_scans <= 0)
  122.     ERREXIT1(cinfo, JERR_BAD_SCAN_SCRIPT, 0);
  123.   /* For sequential JPEG, all scans must have Ss=0, Se=DCTSIZE2-1;
  124.    * for progressive JPEG, no scan can have this.
  125.    */
  126.   scanptr = cinfo->scan_info;
  127.   if (scanptr->Ss != 0 || scanptr->Se != DCTSIZE2-1) {
  128. #ifdef C_PROGRESSIVE_SUPPORTED
  129.     cinfo->progressive_mode = TRUE;
  130.     last_bitpos_ptr = & last_bitpos[0][0];
  131.     for (ci = 0; ci < cinfo->num_components; ci++) 
  132.       for (coefi = 0; coefi < DCTSIZE2; coefi++)
  133. *last_bitpos_ptr++ = -1;
  134. #else
  135.     ERREXIT(cinfo, JERR_NOT_COMPILED);
  136. #endif
  137.   } else {
  138.     cinfo->progressive_mode = FALSE;
  139.     for (ci = 0; ci < cinfo->num_components; ci++) 
  140.       component_sent[ci] = FALSE;
  141.   }
  142.   for (scanno = 1; scanno <= cinfo->num_scans; scanptr++, scanno++) {
  143.     /* Validate component indexes */
  144.     ncomps = scanptr->comps_in_scan;
  145.     if (ncomps <= 0 || ncomps > MAX_COMPS_IN_SCAN)
  146.       ERREXIT2(cinfo, JERR_COMPONENT_COUNT, ncomps, MAX_COMPS_IN_SCAN);
  147.     for (ci = 0; ci < ncomps; ci++) {
  148.       thisi = scanptr->component_index[ci];
  149.       if (thisi < 0 || thisi >= cinfo->num_components)
  150. ERREXIT1(cinfo, JERR_BAD_SCAN_SCRIPT, scanno);
  151.       /* Components must appear in SOF order within each scan */
  152.       if (ci > 0 && thisi <= scanptr->component_index[ci-1])
  153. ERREXIT1(cinfo, JERR_BAD_SCAN_SCRIPT, scanno);
  154.     }
  155.     /* Validate progression parameters */
  156.     Ss = scanptr->Ss;
  157.     Se = scanptr->Se;
  158.     Ah = scanptr->Ah;
  159.     Al = scanptr->Al;
  160.     if (cinfo->progressive_mode) {
  161. #ifdef C_PROGRESSIVE_SUPPORTED
  162.       /* The JPEG spec simply gives the ranges 0..13 for Ah and Al, but that
  163.        * seems wrong: the upper bound ought to depend on data precision.
  164.        * Perhaps they really meant 0..N+1 for N-bit precision.
  165.        * Here we allow 0..10 for 8-bit data; Al larger than 10 results in
  166.        * out-of-range reconstructed DC values during the first DC scan,
  167.        * which might cause problems for some decoders.
  168.        */
  169. #if BITS_IN_JSAMPLE == 8
  170. #define MAX_AH_AL 10
  171. #else
  172. #define MAX_AH_AL 13
  173. #endif
  174.       if (Ss < 0 || Ss >= DCTSIZE2 || Se < Ss || Se >= DCTSIZE2 ||
  175.   Ah < 0 || Ah > MAX_AH_AL || Al < 0 || Al > MAX_AH_AL)
  176. ERREXIT1(cinfo, JERR_BAD_PROG_SCRIPT, scanno);
  177.       if (Ss == 0) {
  178. if (Se != 0) /* DC and AC together not OK */
  179.   ERREXIT1(cinfo, JERR_BAD_PROG_SCRIPT, scanno);
  180.       } else {
  181. if (ncomps != 1) /* AC scans must be for only one component */
  182.   ERREXIT1(cinfo, JERR_BAD_PROG_SCRIPT, scanno);
  183.       }
  184.       for (ci = 0; ci < ncomps; ci++) {
  185. last_bitpos_ptr = & last_bitpos[scanptr->component_index[ci]][0];
  186. if (Ss != 0 && last_bitpos_ptr[0] < 0) /* AC without prior DC scan */
  187.   ERREXIT1(cinfo, JERR_BAD_PROG_SCRIPT, scanno);
  188. for (coefi = Ss; coefi <= Se; coefi++) {
  189.   if (last_bitpos_ptr[coefi] < 0) {
  190.     /* first scan of this coefficient */
  191.     if (Ah != 0)
  192.       ERREXIT1(cinfo, JERR_BAD_PROG_SCRIPT, scanno);
  193.   } else {
  194.     /* not first scan */
  195.     if (Ah != last_bitpos_ptr[coefi] || Al != Ah-1)
  196.       ERREXIT1(cinfo, JERR_BAD_PROG_SCRIPT, scanno);
  197.   }
  198.   last_bitpos_ptr[coefi] = Al;
  199. }
  200.       }
  201. #endif
  202.     } else {
  203.       /* For sequential JPEG, all progression parameters must be these: */
  204.       if (Ss != 0 || Se != DCTSIZE2-1 || Ah != 0 || Al != 0)
  205. ERREXIT1(cinfo, JERR_BAD_PROG_SCRIPT, scanno);
  206.       /* Make sure components are not sent twice */
  207.       for (ci = 0; ci < ncomps; ci++) {
  208. thisi = scanptr->component_index[ci];
  209. if (component_sent[thisi])
  210.   ERREXIT1(cinfo, JERR_BAD_SCAN_SCRIPT, scanno);
  211. component_sent[thisi] = TRUE;
  212.       }
  213.     }
  214.   }
  215.   /* Now verify that everything got sent. */
  216.   if (cinfo->progressive_mode) {
  217. #ifdef C_PROGRESSIVE_SUPPORTED
  218.     /* For progressive mode, we only check that at least some DC data
  219.      * got sent for each component; the spec does not require that all bits
  220.      * of all coefficients be transmitted.  Would it be wiser to enforce
  221.      * transmission of all coefficient bits??
  222.      */
  223.     for (ci = 0; ci < cinfo->num_components; ci++) {
  224.       if (last_bitpos[ci][0] < 0)
  225. ERREXIT(cinfo, JERR_MISSING_DATA);
  226.     }
  227. #endif
  228.   } else {
  229.     for (ci = 0; ci < cinfo->num_components; ci++) {
  230.       if (! component_sent[ci])
  231. ERREXIT(cinfo, JERR_MISSING_DATA);
  232.     }
  233.   }
  234. }
  235. #endif /* C_MULTISCAN_FILES_SUPPORTED */
  236. LOCAL(void)
  237. select_scan_parameters (j_compress_ptr cinfo)
  238. /* Set up the scan parameters for the current scan */
  239. {
  240.   int ci;
  241. #ifdef C_MULTISCAN_FILES_SUPPORTED
  242.   if (cinfo->scan_info != NULL) {
  243.     /* Prepare for current scan --- the script is already validated */
  244.     my_master_ptr master = (my_master_ptr) cinfo->master;
  245.     const jpeg_scan_info * scanptr = cinfo->scan_info + master->scan_number;
  246.     cinfo->comps_in_scan = scanptr->comps_in_scan;
  247.     for (ci = 0; ci < scanptr->comps_in_scan; ci++) {
  248.       cinfo->cur_comp_info[ci] =
  249. &cinfo->comp_info[scanptr->component_index[ci]];
  250.     }
  251.     cinfo->Ss = scanptr->Ss;
  252.     cinfo->Se = scanptr->Se;
  253.     cinfo->Ah = scanptr->Ah;
  254.     cinfo->Al = scanptr->Al;
  255.   }
  256.   else
  257. #endif
  258.   {
  259.     /* Prepare for single sequential-JPEG scan containing all components */
  260.     if (cinfo->num_components > MAX_COMPS_IN_SCAN)
  261.       ERREXIT2(cinfo, JERR_COMPONENT_COUNT, cinfo->num_components,
  262.        MAX_COMPS_IN_SCAN);
  263.     cinfo->comps_in_scan = cinfo->num_components;
  264.     for (ci = 0; ci < cinfo->num_components; ci++) {
  265.       cinfo->cur_comp_info[ci] = &cinfo->comp_info[ci];
  266.     }
  267.     cinfo->Ss = 0;
  268.     cinfo->Se = DCTSIZE2-1;
  269.     cinfo->Ah = 0;
  270.     cinfo->Al = 0;
  271.   }
  272. }
  273. LOCAL(void)
  274. per_scan_setup (j_compress_ptr cinfo)
  275. /* Do computations that are needed before processing a JPEG scan */
  276. /* cinfo->comps_in_scan and cinfo->cur_comp_info[] are already set */
  277. {
  278.   int ci, mcublks, tmp;
  279.   jpeg_component_info *compptr;
  280.   
  281.   if (cinfo->comps_in_scan == 1) {
  282.     
  283.     /* Noninterleaved (single-component) scan */
  284.     compptr = cinfo->cur_comp_info[0];
  285.     
  286.     /* Overall image size in MCUs */
  287.     cinfo->MCUs_per_row = compptr->width_in_blocks;
  288.     cinfo->MCU_rows_in_scan = compptr->height_in_blocks;
  289.     
  290.     /* For noninterleaved scan, always one block per MCU */
  291.     compptr->MCU_width = 1;
  292.     compptr->MCU_height = 1;
  293.     compptr->MCU_blocks = 1;
  294.     compptr->MCU_sample_width = DCTSIZE;
  295.     compptr->last_col_width = 1;
  296.     /* For noninterleaved scans, it is convenient to define last_row_height
  297.      * as the number of block rows present in the last iMCU row.
  298.      */
  299.     tmp = (int) (compptr->height_in_blocks % compptr->v_samp_factor);
  300.     if (tmp == 0) tmp = compptr->v_samp_factor;
  301.     compptr->last_row_height = tmp;
  302.     
  303.     /* Prepare array describing MCU composition */
  304.     cinfo->blocks_in_MCU = 1;
  305.     cinfo->MCU_membership[0] = 0;
  306.     
  307.   } else {
  308.     
  309.     /* Interleaved (multi-component) scan */
  310.     if (cinfo->comps_in_scan <= 0 || cinfo->comps_in_scan > MAX_COMPS_IN_SCAN)
  311.       ERREXIT2(cinfo, JERR_COMPONENT_COUNT, cinfo->comps_in_scan,
  312.        MAX_COMPS_IN_SCAN);
  313.     
  314.     /* Overall image size in MCUs */
  315.     cinfo->MCUs_per_row = (JDIMENSION)
  316.       jdiv_round_up((long) cinfo->image_width,
  317.     (long) (cinfo->max_h_samp_factor*DCTSIZE));
  318.     cinfo->MCU_rows_in_scan = (JDIMENSION)
  319.       jdiv_round_up((long) cinfo->image_height,
  320.     (long) (cinfo->max_v_samp_factor*DCTSIZE));
  321.     
  322.     cinfo->blocks_in_MCU = 0;
  323.     
  324.     for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
  325.       compptr = cinfo->cur_comp_info[ci];
  326.       /* Sampling factors give # of blocks of component in each MCU */
  327.       compptr->MCU_width = compptr->h_samp_factor;
  328.       compptr->MCU_height = compptr->v_samp_factor;
  329.       compptr->MCU_blocks = compptr->MCU_width * compptr->MCU_height;
  330.       compptr->MCU_sample_width = compptr->MCU_width * DCTSIZE;
  331.       /* Figure number of non-dummy blocks in last MCU column & row */
  332.       tmp = (int) (compptr->width_in_blocks % compptr->MCU_width);
  333.       if (tmp == 0) tmp = compptr->MCU_width;
  334.       compptr->last_col_width = tmp;
  335.       tmp = (int) (compptr->height_in_blocks % compptr->MCU_height);
  336.       if (tmp == 0) tmp = compptr->MCU_height;
  337.       compptr->last_row_height = tmp;
  338.       /* Prepare array describing MCU composition */
  339.       mcublks = compptr->MCU_blocks;
  340.       if (cinfo->blocks_in_MCU + mcublks > C_MAX_BLOCKS_IN_MCU)
  341. ERREXIT(cinfo, JERR_BAD_MCU_SIZE);
  342.       while (mcublks-- > 0) {
  343. cinfo->MCU_membership[cinfo->blocks_in_MCU++] = ci;
  344.       }
  345.     }
  346.     
  347.   }
  348.   /* Convert restart specified in rows to actual MCU count. */
  349.   /* Note that count must fit in 16 bits, so we provide limiting. */
  350.   if (cinfo->restart_in_rows > 0) {
  351.     long nominal = (long) cinfo->restart_in_rows * (long) cinfo->MCUs_per_row;
  352.     cinfo->restart_interval = (unsigned int) MIN(nominal, 65535L);
  353.   }
  354. }
  355. /*
  356.  * Per-pass setup.
  357.  * This is called at the beginning of each pass.  We determine which modules
  358.  * will be active during this pass and give them appropriate start_pass calls.
  359.  * We also set is_last_pass to indicate whether any more passes will be
  360.  * required.
  361.  */
  362. METHODDEF(void)
  363. prepare_for_pass (j_compress_ptr cinfo)
  364. {
  365.   my_master_ptr master = (my_master_ptr) cinfo->master;
  366.   switch (master->pass_type) {
  367.   case main_pass:
  368.     /* Initial pass: will collect input data, and do either Huffman
  369.      * optimization or data output for the first scan.
  370.      */
  371.     select_scan_parameters(cinfo);
  372.     per_scan_setup(cinfo);
  373.     if (! cinfo->raw_data_in) {
  374.       (*cinfo->cconvert->start_pass) (cinfo);
  375.       (*cinfo->downsample->start_pass) (cinfo);
  376.       (*cinfo->prep->start_pass) (cinfo, JBUF_PASS_THRU);
  377.     }
  378.     (*cinfo->fdct->start_pass) (cinfo);
  379.     (*cinfo->entropy->start_pass) (cinfo, cinfo->optimize_coding);
  380.     (*cinfo->coef->start_pass) (cinfo,
  381. (master->total_passes > 1 ?
  382.  JBUF_SAVE_AND_PASS : JBUF_PASS_THRU));
  383.     (*cinfo->main->start_pass) (cinfo, JBUF_PASS_THRU);
  384.     if (cinfo->optimize_coding) {
  385.       /* No immediate data output; postpone writing frame/scan headers */
  386.       master->pub.call_pass_startup = FALSE;
  387.     } else {
  388.       /* Will write frame/scan headers at first jpeg_write_scanlines call */
  389.       master->pub.call_pass_startup = TRUE;
  390.     }
  391.     break;
  392. #ifdef ENTROPY_OPT_SUPPORTED
  393.   case huff_opt_pass:
  394.     /* Do Huffman optimization for a scan after the first one. */
  395.     select_scan_parameters(cinfo);
  396.     per_scan_setup(cinfo);
  397.     if (cinfo->Ss != 0 || cinfo->Ah == 0 || cinfo->arith_code) {
  398.       (*cinfo->entropy->start_pass) (cinfo, TRUE);
  399.       (*cinfo->coef->start_pass) (cinfo, JBUF_CRANK_DEST);
  400.       master->pub.call_pass_startup = FALSE;
  401.       break;
  402.     }
  403.     /* Special case: Huffman DC refinement scans need no Huffman table
  404.      * and therefore we can skip the optimization pass for them.
  405.      */
  406.     master->pass_type = output_pass;
  407.     master->pass_number++;
  408.     /*FALLTHROUGH*/
  409. #endif
  410.   case output_pass:
  411.     /* Do a data-output pass. */
  412.     /* We need not repeat per-scan setup if prior optimization pass did it. */
  413.     if (! cinfo->optimize_coding) {
  414.       select_scan_parameters(cinfo);
  415.       per_scan_setup(cinfo);
  416.     }
  417.     (*cinfo->entropy->start_pass) (cinfo, FALSE);
  418.     (*cinfo->coef->start_pass) (cinfo, JBUF_CRANK_DEST);
  419.     /* We emit frame/scan headers now */
  420.     if (master->scan_number == 0)
  421.       (*cinfo->marker->write_frame_header) (cinfo);
  422.     (*cinfo->marker->write_scan_header) (cinfo);
  423.     master->pub.call_pass_startup = FALSE;
  424.     break;
  425.   default:
  426.     ERREXIT(cinfo, JERR_NOT_COMPILED);
  427.   }
  428.   master->pub.is_last_pass = (master->pass_number == master->total_passes-1);
  429.   /* Set up progress monitor's pass info if present */
  430.   if (cinfo->progress != NULL) {
  431.     cinfo->progress->completed_passes = master->pass_number;
  432.     cinfo->progress->total_passes = master->total_passes;
  433.   }
  434. }
  435. /*
  436.  * Special start-of-pass hook.
  437.  * This is called by jpeg_write_scanlines if call_pass_startup is TRUE.
  438.  * In single-pass processing, we need this hook because we don't want to
  439.  * write frame/scan headers during jpeg_start_compress; we want to let the
  440.  * application write COM markers etc. between jpeg_start_compress and the
  441.  * jpeg_write_scanlines loop.
  442.  * In multi-pass processing, this routine is not used.
  443.  */
  444. METHODDEF(void)
  445. pass_startup (j_compress_ptr cinfo)
  446. {
  447.   cinfo->master->call_pass_startup = FALSE; /* reset flag so call only once */
  448.   (*cinfo->marker->write_frame_header) (cinfo);
  449.   (*cinfo->marker->write_scan_header) (cinfo);
  450. }
  451. /*
  452.  * Finish up at end of pass.
  453.  */
  454. METHODDEF(void)
  455. finish_pass_master (j_compress_ptr cinfo)
  456. {
  457.   my_master_ptr master = (my_master_ptr) cinfo->master;
  458.   /* The entropy coder always needs an end-of-pass call,
  459.    * either to analyze statistics or to flush its output buffer.
  460.    */
  461.   (*cinfo->entropy->finish_pass) (cinfo);
  462.   /* Update state for next pass */
  463.   switch (master->pass_type) {
  464.   case main_pass:
  465.     /* next pass is either output of scan 0 (after optimization)
  466.      * or output of scan 1 (if no optimization).
  467.      */
  468.     master->pass_type = output_pass;
  469.     if (! cinfo->optimize_coding)
  470.       master->scan_number++;
  471.     break;
  472.   case huff_opt_pass:
  473.     /* next pass is always output of current scan */
  474.     master->pass_type = output_pass;
  475.     break;
  476.   case output_pass:
  477.     /* next pass is either optimization or output of next scan */
  478.     if (cinfo->optimize_coding)
  479.       master->pass_type = huff_opt_pass;
  480.     master->scan_number++;
  481.     break;
  482.   }
  483.   master->pass_number++;
  484. }
  485. /*
  486.  * Initialize master compression control.
  487.  */
  488. GLOBAL(void)
  489. jinit_c_master_control (j_compress_ptr cinfo, boolean transcode_only)
  490. {
  491.   my_master_ptr master;
  492.   master = (my_master_ptr)
  493.       (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  494.   SIZEOF(my_comp_master));
  495.   cinfo->master = (struct jpeg_comp_master *) master;
  496.   master->pub.prepare_for_pass = prepare_for_pass;
  497.   master->pub.pass_startup = pass_startup;
  498.   master->pub.finish_pass = finish_pass_master;
  499.   master->pub.is_last_pass = FALSE;
  500.   /* Validate parameters, determine derived values */
  501.   initial_setup(cinfo);
  502.   if (cinfo->scan_info != NULL) {
  503. #ifdef C_MULTISCAN_FILES_SUPPORTED
  504.     validate_script(cinfo);
  505. #else
  506.     ERREXIT(cinfo, JERR_NOT_COMPILED);
  507. #endif
  508.   } else {
  509.     cinfo->progressive_mode = FALSE;
  510.     cinfo->num_scans = 1;
  511.   }
  512.   if (cinfo->progressive_mode) /*  TEMPORARY HACK ??? */
  513.     cinfo->optimize_coding = TRUE; /* assume default tables no good for progressive mode */
  514.   /* Initialize my private state */
  515.   if (transcode_only) {
  516.     /* no main pass in transcoding */
  517.     if (cinfo->optimize_coding)
  518.       master->pass_type = huff_opt_pass;
  519.     else
  520.       master->pass_type = output_pass;
  521.   } else {
  522.     /* for normal compression, first pass is always this type: */
  523.     master->pass_type = main_pass;
  524.   }
  525.   master->scan_number = 0;
  526.   master->pass_number = 0;
  527.   if (cinfo->optimize_coding)
  528.     master->total_passes = cinfo->num_scans * 2;
  529.   else
  530.     master->total_passes = cinfo->num_scans;
  531. }