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

打印编程

开发平台:

Visual C++

  1. /*
  2.  * jctrans.c
  3.  *
  4.  * Copyright (C) 1995-1998, 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 library routines for transcoding compression,
  9.  * that is, writing raw DCT coefficient arrays to an output JPEG file.
  10.  * The routines in jcapimin.c will also be needed by a transcoder.
  11.  */
  12. #define JPEG_INTERNALS
  13. #include "jinclude.h"
  14. #include "jpeglib.h"
  15. /* Forward declarations */
  16. LOCAL(void) transencode_master_selection
  17. JPP((j_compress_ptr cinfo, jvirt_barray_ptr * coef_arrays));
  18. LOCAL(void) transencode_coef_controller
  19. JPP((j_compress_ptr cinfo, jvirt_barray_ptr * coef_arrays));
  20. #if defined(__VISAGECPP__)
  21. /* Visual Age fixups for multiple declarations */
  22. #  define start_pass_coef   start_pass_coef2 /* already in jccoeft.c */
  23. #  define compress_output   compress_output2 /* already in jccoeft.c */
  24. #endif
  25. /*
  26.  * Compression initialization for writing raw-coefficient data.
  27.  * Before calling this, all parameters and a data destination must be set up.
  28.  * Call jpeg_finish_compress() to actually write the data.
  29.  *
  30.  * The number of passed virtual arrays must match cinfo->num_components.
  31.  * Note that the virtual arrays need not be filled or even realized at
  32.  * the time write_coefficients is called; indeed, if the virtual arrays
  33.  * were requested from this compression object's memory manager, they
  34.  * typically will be realized during this routine and filled afterwards.
  35.  */
  36. GLOBAL(void)
  37. jpeg_write_coefficients (j_compress_ptr cinfo, jvirt_barray_ptr * coef_arrays)
  38. {
  39.   if (cinfo->global_state != CSTATE_START)
  40.     ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
  41.   /* Mark all tables to be written */
  42.   jpeg_suppress_tables(cinfo, FALSE);
  43.   /* (Re)initialize error mgr and destination modules */
  44.   (*cinfo->err->reset_error_mgr) ((j_common_ptr) cinfo);
  45.   (*cinfo->dest->init_destination) (cinfo);
  46.   /* Perform master selection of active modules */
  47.   transencode_master_selection(cinfo, coef_arrays);
  48.   /* Wait for jpeg_finish_compress() call */
  49.   cinfo->next_scanline = 0; /* so jpeg_write_marker works */
  50.   cinfo->global_state = CSTATE_WRCOEFS;
  51. }
  52. /*
  53.  * Initialize the compression object with default parameters,
  54.  * then copy from the source object all parameters needed for lossless
  55.  * transcoding.  Parameters that can be varied without loss (such as
  56.  * scan script and Huffman optimization) are left in their default states.
  57.  */
  58. GLOBAL(void)
  59. jpeg_copy_critical_parameters (j_decompress_ptr srcinfo,
  60.        j_compress_ptr dstinfo)
  61. {
  62.   JQUANT_TBL ** qtblptr;
  63.   jpeg_component_info *incomp, *outcomp;
  64.   JQUANT_TBL *c_quant, *slot_quant;
  65.   int tblno, ci, coefi;
  66.   /* Safety check to ensure start_compress not called yet. */
  67.   if (dstinfo->global_state != CSTATE_START)
  68.     ERREXIT1(dstinfo, JERR_BAD_STATE, dstinfo->global_state);
  69.   /* Copy fundamental image dimensions */
  70.   dstinfo->image_width = srcinfo->image_width;
  71.   dstinfo->image_height = srcinfo->image_height;
  72.   dstinfo->input_components = srcinfo->num_components;
  73.   dstinfo->in_color_space = srcinfo->jpeg_color_space;
  74.   /* Initialize all parameters to default values */
  75.   jpeg_set_defaults(dstinfo);
  76.   /* jpeg_set_defaults may choose wrong colorspace, eg YCbCr if input is RGB.
  77.    * Fix it to get the right header markers for the image colorspace.
  78.    */
  79.   jpeg_set_colorspace(dstinfo, srcinfo->jpeg_color_space);
  80.   dstinfo->data_precision = srcinfo->data_precision;
  81.   dstinfo->CCIR601_sampling = srcinfo->CCIR601_sampling;
  82.   /* Copy the source's quantization tables. */
  83.   for (tblno = 0; tblno < NUM_QUANT_TBLS; tblno++) {
  84.     if (srcinfo->quant_tbl_ptrs[tblno] != NULL) {
  85.       qtblptr = & dstinfo->quant_tbl_ptrs[tblno];
  86.       if (*qtblptr == NULL)
  87. *qtblptr = jpeg_alloc_quant_table((j_common_ptr) dstinfo);
  88.       MEMCOPY((*qtblptr)->quantval,
  89.       srcinfo->quant_tbl_ptrs[tblno]->quantval,
  90.       SIZEOF((*qtblptr)->quantval));
  91.       (*qtblptr)->sent_table = FALSE;
  92.     }
  93.   }
  94.   /* Copy the source's per-component info.
  95.    * Note we assume jpeg_set_defaults has allocated the dest comp_info array.
  96.    */
  97.   dstinfo->num_components = srcinfo->num_components;
  98.   if (dstinfo->num_components < 1 || dstinfo->num_components > MAX_COMPONENTS)
  99.     ERREXIT2(dstinfo, JERR_COMPONENT_COUNT, dstinfo->num_components,
  100.      MAX_COMPONENTS);
  101.   for (ci = 0, incomp = srcinfo->comp_info, outcomp = dstinfo->comp_info;
  102.        ci < dstinfo->num_components; ci++, incomp++, outcomp++) {
  103.     outcomp->component_id = incomp->component_id;
  104.     outcomp->h_samp_factor = incomp->h_samp_factor;
  105.     outcomp->v_samp_factor = incomp->v_samp_factor;
  106.     outcomp->quant_tbl_no = incomp->quant_tbl_no;
  107.     /* Make sure saved quantization table for component matches the qtable
  108.      * slot.  If not, the input file re-used this qtable slot.
  109.      * IJG encoder currently cannot duplicate this.
  110.      */
  111.     tblno = outcomp->quant_tbl_no;
  112.     if (tblno < 0 || tblno >= NUM_QUANT_TBLS ||
  113. srcinfo->quant_tbl_ptrs[tblno] == NULL)
  114.       ERREXIT1(dstinfo, JERR_NO_QUANT_TABLE, tblno);
  115.     slot_quant = srcinfo->quant_tbl_ptrs[tblno];
  116.     c_quant = incomp->quant_table;
  117.     if (c_quant != NULL) {
  118.       for (coefi = 0; coefi < DCTSIZE2; coefi++) {
  119. if (c_quant->quantval[coefi] != slot_quant->quantval[coefi])
  120.   ERREXIT1(dstinfo, JERR_MISMATCHED_QUANT_TABLE, tblno);
  121.       }
  122.     }
  123.     /* Note: we do not copy the source's Huffman table assignments;
  124.      * instead we rely on jpeg_set_colorspace to have made a suitable choice.
  125.      */
  126.   }
  127.   /* Also copy JFIF version and resolution information, if available.
  128.    * Strictly speaking this isn't "critical" info, but it's nearly
  129.    * always appropriate to copy it if available.  In particular,
  130.    * if the application chooses to copy JFIF 1.02 extension markers from
  131.    * the source file, we need to copy the version to make sure we don't
  132.    * emit a file that has 1.02 extensions but a claimed version of 1.01.
  133.    * We will *not*, however, copy version info from mislabeled "2.01" files.
  134.    */
  135.   if (srcinfo->saw_JFIF_marker) {
  136.     if (srcinfo->JFIF_major_version == 1) {
  137.       dstinfo->JFIF_major_version = srcinfo->JFIF_major_version;
  138.       dstinfo->JFIF_minor_version = srcinfo->JFIF_minor_version;
  139.     }
  140.     dstinfo->density_unit = srcinfo->density_unit;
  141.     dstinfo->X_density = srcinfo->X_density;
  142.     dstinfo->Y_density = srcinfo->Y_density;
  143.   }
  144. }
  145. /*
  146.  * Master selection of compression modules for transcoding.
  147.  * This substitutes for jcinit.c's initialization of the full compressor.
  148.  */
  149. LOCAL(void)
  150. transencode_master_selection (j_compress_ptr cinfo,
  151.       jvirt_barray_ptr * coef_arrays)
  152. {
  153.   /* Although we don't actually use input_components for transcoding,
  154.    * jcmaster.c's initial_setup will complain if input_components is 0.
  155.    */
  156.   cinfo->input_components = 1;
  157.   /* Initialize master control (includes parameter checking/processing) */
  158.   jinit_c_master_control(cinfo, TRUE /* transcode only */);
  159.   /* Entropy encoding: either Huffman or arithmetic coding. */
  160.   if (cinfo->arith_code) {
  161.     ERREXIT(cinfo, JERR_ARITH_NOTIMPL);
  162.   } else {
  163.     if (cinfo->progressive_mode) {
  164. #ifdef C_PROGRESSIVE_SUPPORTED
  165.       jinit_phuff_encoder(cinfo);
  166. #else
  167.       ERREXIT(cinfo, JERR_NOT_COMPILED);
  168. #endif
  169.     } else
  170.       jinit_huff_encoder(cinfo);
  171.   }
  172.   /* We need a special coefficient buffer controller. */
  173.   transencode_coef_controller(cinfo, coef_arrays);
  174.   jinit_marker_writer(cinfo);
  175.   /* We can now tell the memory manager to allocate virtual arrays. */
  176.   (*cinfo->mem->realize_virt_arrays) ((j_common_ptr) cinfo);
  177.   /* Write the datastream header (SOI, JFIF) immediately.
  178.    * Frame and scan headers are postponed till later.
  179.    * This lets application insert special markers after the SOI.
  180.    */
  181.   (*cinfo->marker->write_file_header) (cinfo);
  182. }
  183. /*
  184.  * The rest of this file is a special implementation of the coefficient
  185.  * buffer controller.  This is similar to jccoefct.c, but it handles only
  186.  * output from presupplied virtual arrays.  Furthermore, we generate any
  187.  * dummy padding blocks on-the-fly rather than expecting them to be present
  188.  * in the arrays.
  189.  */
  190. /* Private buffer controller object */
  191. typedef struct {
  192.   struct jpeg_c_coef_controller pub; /* public fields */
  193.   JDIMENSION iMCU_row_num; /* iMCU row # within image */
  194.   JDIMENSION mcu_ctr; /* counts MCUs processed in current row */
  195.   int MCU_vert_offset; /* counts MCU rows within iMCU row */
  196.   int MCU_rows_per_iMCU_row; /* number of such rows needed */
  197.   /* Virtual block array for each component. */
  198.   jvirt_barray_ptr * whole_image;
  199.   /* Workspace for constructing dummy blocks at right/bottom edges. */
  200.   JBLOCKROW dummy_buffer[C_MAX_BLOCKS_IN_MCU];
  201. } my_coef_controller;
  202. typedef my_coef_controller * my_coef_ptr;
  203. LOCAL(void)
  204. start_iMCU_row (j_compress_ptr cinfo)
  205. /* Reset within-iMCU-row counters for a new row */
  206. {
  207.   my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  208.   /* In an interleaved scan, an MCU row is the same as an iMCU row.
  209.    * In a noninterleaved scan, an iMCU row has v_samp_factor MCU rows.
  210.    * But at the bottom of the image, process only what's left.
  211.    */
  212.   if (cinfo->comps_in_scan > 1) {
  213.     coef->MCU_rows_per_iMCU_row = 1;
  214.   } else {
  215.     if (coef->iMCU_row_num < (cinfo->total_iMCU_rows-1))
  216.       coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
  217.     else
  218.       coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
  219.   }
  220.   coef->mcu_ctr = 0;
  221.   coef->MCU_vert_offset = 0;
  222. }
  223. /*
  224.  * Initialize for a processing pass.
  225.  */
  226. METHODDEF(void)
  227. start_pass_coef (j_compress_ptr cinfo, J_BUF_MODE pass_mode)
  228. {
  229.   my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  230.   if (pass_mode != JBUF_CRANK_DEST)
  231.     ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
  232.   coef->iMCU_row_num = 0;
  233.   start_iMCU_row(cinfo);
  234. }
  235. /*
  236.  * Process some data.
  237.  * We process the equivalent of one fully interleaved MCU row ("iMCU" row)
  238.  * per call, ie, v_samp_factor block rows for each component in the scan.
  239.  * The data is obtained from the virtual arrays and fed to the entropy coder.
  240.  * Returns TRUE if the iMCU row is completed, FALSE if suspended.
  241.  *
  242.  * NB: input_buf is ignored; it is likely to be a NULL pointer.
  243.  */
  244. METHODDEF(boolean)
  245. compress_output (j_compress_ptr cinfo, JSAMPIMAGE input_buf)
  246. {
  247.   my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  248.   JDIMENSION MCU_col_num; /* index of current MCU within row */
  249.   JDIMENSION last_MCU_col = cinfo->MCUs_per_row - 1;
  250.   JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
  251.   int blkn, ci, xindex, yindex, yoffset, blockcnt;
  252.   JDIMENSION start_col;
  253.   JBLOCKARRAY buffer[MAX_COMPS_IN_SCAN];
  254.   JBLOCKROW MCU_buffer[C_MAX_BLOCKS_IN_MCU];
  255.   JBLOCKROW buffer_ptr;
  256.   jpeg_component_info *compptr;
  257.   /* Align the virtual buffers for the components used in this scan. */
  258.   for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
  259.     compptr = cinfo->cur_comp_info[ci];
  260.     buffer[ci] = (*cinfo->mem->access_virt_barray)
  261.       ((j_common_ptr) cinfo, coef->whole_image[compptr->component_index],
  262.        coef->iMCU_row_num * compptr->v_samp_factor,
  263.        (JDIMENSION) compptr->v_samp_factor, FALSE);
  264.   }
  265.   /* Loop to process one whole iMCU row */
  266.   for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
  267.        yoffset++) {
  268.     for (MCU_col_num = coef->mcu_ctr; MCU_col_num < cinfo->MCUs_per_row;
  269.  MCU_col_num++) {
  270.       /* Construct list of pointers to DCT blocks belonging to this MCU */
  271.       blkn = 0; /* index of current DCT block within MCU */
  272.       for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
  273. compptr = cinfo->cur_comp_info[ci];
  274. start_col = MCU_col_num * compptr->MCU_width;
  275. blockcnt = (MCU_col_num < last_MCU_col) ? compptr->MCU_width
  276. : compptr->last_col_width;
  277. for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
  278.   if (coef->iMCU_row_num < last_iMCU_row ||
  279.       yindex+yoffset < compptr->last_row_height) {
  280.     /* Fill in pointers to real blocks in this row */
  281.     buffer_ptr = buffer[ci][yindex+yoffset] + start_col;
  282.     for (xindex = 0; xindex < blockcnt; xindex++)
  283.       MCU_buffer[blkn++] = buffer_ptr++;
  284.   } else {
  285.     /* At bottom of image, need a whole row of dummy blocks */
  286.     xindex = 0;
  287.   }
  288.   /* Fill in any dummy blocks needed in this row.
  289.    * Dummy blocks are filled in the same way as in jccoefct.c:
  290.    * all zeroes in the AC entries, DC entries equal to previous
  291.    * block's DC value.  The init routine has already zeroed the
  292.    * AC entries, so we need only set the DC entries correctly.
  293.    */
  294.   for (; xindex < compptr->MCU_width; xindex++) {
  295.     MCU_buffer[blkn] = coef->dummy_buffer[blkn];
  296.     MCU_buffer[blkn][0][0] = MCU_buffer[blkn-1][0][0];
  297.     blkn++;
  298.   }
  299. }
  300.       }
  301.       /* Try to write the MCU. */
  302.       if (! (*cinfo->entropy->encode_mcu) (cinfo, MCU_buffer)) {
  303. /* Suspension forced; update state counters and exit */
  304. coef->MCU_vert_offset = yoffset;
  305. coef->mcu_ctr = MCU_col_num;
  306. return FALSE;
  307.       }
  308.     }
  309.     /* Completed an MCU row, but perhaps not an iMCU row */
  310.     coef->mcu_ctr = 0;
  311.   }
  312.   /* Completed the iMCU row, advance counters for next one */
  313.   coef->iMCU_row_num++;
  314.   start_iMCU_row(cinfo);
  315.   return TRUE;
  316. }
  317. /*
  318.  * Initialize coefficient buffer controller.
  319.  *
  320.  * Each passed coefficient array must be the right size for that
  321.  * coefficient: width_in_blocks wide and height_in_blocks high,
  322.  * with unitheight at least v_samp_factor.
  323.  */
  324. LOCAL(void)
  325. transencode_coef_controller (j_compress_ptr cinfo,
  326.      jvirt_barray_ptr * coef_arrays)
  327. {
  328.   my_coef_ptr coef;
  329.   JBLOCKROW buffer;
  330.   int i;
  331.   coef = (my_coef_ptr)
  332.     (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  333. SIZEOF(my_coef_controller));
  334.   cinfo->coef = (struct jpeg_c_coef_controller *) coef;
  335.   coef->pub.start_pass = start_pass_coef;
  336.   coef->pub.compress_data = compress_output;
  337.   /* Save pointer to virtual arrays */
  338.   coef->whole_image = coef_arrays;
  339.   /* Allocate and pre-zero space for dummy DCT blocks. */
  340.   buffer = (JBLOCKROW)
  341.     (*cinfo->mem->alloc_large) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  342. C_MAX_BLOCKS_IN_MCU * SIZEOF(JBLOCK));
  343.   jzero_far((void FAR *) buffer, C_MAX_BLOCKS_IN_MCU * SIZEOF(JBLOCK));
  344.   for (i = 0; i < C_MAX_BLOCKS_IN_MCU; i++) {
  345.     coef->dummy_buffer[i] = buffer + i;
  346.   }
  347. }
  348. #if defined(__VISAGECPP__)
  349. #  ifdef start_pass_coef2
  350. #   undef start_pass_coef2
  351. #  endif
  352. #  ifdef compress_output2
  353. #    undef compress_output2
  354. #  endif
  355. #endif