JDPOSTCT.c
上传用户:qiutianh
上传日期:2022-08-08
资源大小:939k
文件大小:11k
源码类别:

图形图象

开发平台:

Visual C++

  1. ////////////////////////////////////////////////////////////////////////
  2. //
  3. // Note : this file is included as part of the Smaller Animals Software
  4. // JpegFile package. Though this file has not been modified from it's 
  5. // original IJG 6a form, it is not the responsibility on the Independent
  6. // JPEG Group to answer questions regarding this code.
  7. //
  8. // Any questions you have about this code should be addressed to :
  9. //
  10. // CHRISDL@PAGESZ.NET - the distributor of this package.
  11. //
  12. // Remember, by including this code in the JpegFile package, Smaller 
  13. // Animals Software assumes all responsibilities for answering questions
  14. // about it. If we (SA Software) can't answer your questions ourselves, we 
  15. // will direct you to people who can.
  16. //
  17. // Thanks, CDL.
  18. //
  19. ////////////////////////////////////////////////////////////////////////
  20. /*
  21.  * jdpostct.c
  22.  *
  23.  * Copyright (C) 1994-1996, Thomas G. Lane.
  24.  * This file is part of the Independent JPEG Group's software.
  25.  * For conditions of distribution and use, see the accompanying README file.
  26.  *
  27.  * This file contains the decompression postprocessing controller.
  28.  * This controller manages the upsampling, color conversion, and color
  29.  * quantization/reduction steps; specifically, it controls the buffering
  30.  * between upsample/color conversion and color quantization/reduction.
  31.  *
  32.  * If no color quantization/reduction is required, then this module has no
  33.  * work to do, and it just hands off to the upsample/color conversion code.
  34.  * An integrated upsample/convert/quantize process would replace this module
  35.  * entirely.
  36.  */
  37. #define JPEG_INTERNALS
  38. #include "jinclude.h"
  39. #include "jpeglib.h"
  40. /* Private buffer controller object */
  41. typedef struct {
  42.   struct jpeg_d_post_controller pub; /* public fields */
  43.   /* Color quantization source buffer: this holds output data from
  44.    * the upsample/color conversion step to be passed to the quantizer.
  45.    * For two-pass color quantization, we need a full-image buffer;
  46.    * for one-pass operation, a strip buffer is sufficient.
  47.    */
  48.   jvirt_sarray_ptr whole_image; /* virtual array, or NULL if one-pass */
  49.   JSAMPARRAY buffer; /* strip buffer, or current strip of virtual */
  50.   JDIMENSION strip_height; /* buffer size in rows */
  51.   /* for two-pass mode only: */
  52.   JDIMENSION starting_row; /* row # of first row in current strip */
  53.   JDIMENSION next_row; /* index of next row to fill/empty in strip */
  54. } my_post_controller;
  55. typedef my_post_controller * my_post_ptr;
  56. /* Forward declarations */
  57. METHODDEF(void) post_process_1pass
  58. JPP((j_decompress_ptr cinfo,
  59.      JSAMPIMAGE input_buf, JDIMENSION *in_row_group_ctr,
  60.      JDIMENSION in_row_groups_avail,
  61.      JSAMPARRAY output_buf, JDIMENSION *out_row_ctr,
  62.      JDIMENSION out_rows_avail));
  63. #ifdef QUANT_2PASS_SUPPORTED
  64. METHODDEF(void) post_process_prepass
  65. JPP((j_decompress_ptr cinfo,
  66.      JSAMPIMAGE input_buf, JDIMENSION *in_row_group_ctr,
  67.      JDIMENSION in_row_groups_avail,
  68.      JSAMPARRAY output_buf, JDIMENSION *out_row_ctr,
  69.      JDIMENSION out_rows_avail));
  70. METHODDEF(void) post_process_2pass
  71. JPP((j_decompress_ptr cinfo,
  72.      JSAMPIMAGE input_buf, JDIMENSION *in_row_group_ctr,
  73.      JDIMENSION in_row_groups_avail,
  74.      JSAMPARRAY output_buf, JDIMENSION *out_row_ctr,
  75.      JDIMENSION out_rows_avail));
  76. #endif
  77. /*
  78.  * Initialize for a processing pass.
  79.  */
  80. METHODDEF(void)
  81. start_pass_dpost (j_decompress_ptr cinfo, J_BUF_MODE pass_mode)
  82. {
  83.   my_post_ptr post = (my_post_ptr) cinfo->post;
  84.   switch (pass_mode) {
  85.   case JBUF_PASS_THRU:
  86.     if (cinfo->quantize_colors) {
  87.       /* Single-pass processing with color quantization. */
  88.       post->pub.post_process_data = post_process_1pass;
  89.       /* We could be doing buffered-image output before starting a 2-pass
  90.        * color quantization; in that case, jinit_d_post_controller did not
  91.        * allocate a strip buffer.  Use the virtual-array buffer as workspace.
  92.        */
  93.       if (post->buffer == NULL) {
  94. post->buffer = (*cinfo->mem->access_virt_sarray)
  95.   ((j_common_ptr) cinfo, post->whole_image,
  96.    (JDIMENSION) 0, post->strip_height, TRUE);
  97.       }
  98.     } else {
  99.       /* For single-pass processing without color quantization,
  100.        * I have no work to do; just call the upsampler directly.
  101.        */
  102.       post->pub.post_process_data = cinfo->upsample->upsample;
  103.     }
  104.     break;
  105. #ifdef QUANT_2PASS_SUPPORTED
  106.   case JBUF_SAVE_AND_PASS:
  107.     /* First pass of 2-pass quantization */
  108.     if (post->whole_image == NULL)
  109.       ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
  110.     post->pub.post_process_data = post_process_prepass;
  111.     break;
  112.   case JBUF_CRANK_DEST:
  113.     /* Second pass of 2-pass quantization */
  114.     if (post->whole_image == NULL)
  115.       ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
  116.     post->pub.post_process_data = post_process_2pass;
  117.     break;
  118. #endif /* QUANT_2PASS_SUPPORTED */
  119.   default:
  120.     ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
  121.     break;
  122.   }
  123.   post->starting_row = post->next_row = 0;
  124. }
  125. /*
  126.  * Process some data in the one-pass (strip buffer) case.
  127.  * This is used for color precision reduction as well as one-pass quantization.
  128.  */
  129. METHODDEF(void)
  130. post_process_1pass (j_decompress_ptr cinfo,
  131.     JSAMPIMAGE input_buf, JDIMENSION *in_row_group_ctr,
  132.     JDIMENSION in_row_groups_avail,
  133.     JSAMPARRAY output_buf, JDIMENSION *out_row_ctr,
  134.     JDIMENSION out_rows_avail)
  135. {
  136.   my_post_ptr post = (my_post_ptr) cinfo->post;
  137.   JDIMENSION num_rows, max_rows;
  138.   /* Fill the buffer, but not more than what we can dump out in one go. */
  139.   /* Note we rely on the upsampler to detect bottom of image. */
  140.   max_rows = out_rows_avail - *out_row_ctr;
  141.   if (max_rows > post->strip_height)
  142.     max_rows = post->strip_height;
  143.   num_rows = 0;
  144.   (*cinfo->upsample->upsample) (cinfo,
  145. input_buf, in_row_group_ctr, in_row_groups_avail,
  146. post->buffer, &num_rows, max_rows);
  147.   /* Quantize and emit data. */
  148.   (*cinfo->cquantize->color_quantize) (cinfo,
  149. post->buffer, output_buf + *out_row_ctr, (int) num_rows);
  150.   *out_row_ctr += num_rows;
  151. }
  152. #ifdef QUANT_2PASS_SUPPORTED
  153. /*
  154.  * Process some data in the first pass of 2-pass quantization.
  155.  */
  156. METHODDEF(void)
  157. post_process_prepass (j_decompress_ptr cinfo,
  158.       JSAMPIMAGE input_buf, JDIMENSION *in_row_group_ctr,
  159.       JDIMENSION in_row_groups_avail,
  160.       JSAMPARRAY output_buf, JDIMENSION *out_row_ctr,
  161.       JDIMENSION out_rows_avail)
  162. {
  163.   my_post_ptr post = (my_post_ptr) cinfo->post;
  164.   JDIMENSION old_next_row, num_rows;
  165.   /* Reposition virtual buffer if at start of strip. */
  166.   if (post->next_row == 0) {
  167.     post->buffer = (*cinfo->mem->access_virt_sarray)
  168. ((j_common_ptr) cinfo, post->whole_image,
  169.  post->starting_row, post->strip_height, TRUE);
  170.   }
  171.   /* Upsample some data (up to a strip height's worth). */
  172.   old_next_row = post->next_row;
  173.   (*cinfo->upsample->upsample) (cinfo,
  174. input_buf, in_row_group_ctr, in_row_groups_avail,
  175. post->buffer, &post->next_row, post->strip_height);
  176.   /* Allow quantizer to scan new data.  No data is emitted, */
  177.   /* but we advance out_row_ctr so outer loop can tell when we're done. */
  178.   if (post->next_row > old_next_row) {
  179.     num_rows = post->next_row - old_next_row;
  180.     (*cinfo->cquantize->color_quantize) (cinfo, post->buffer + old_next_row,
  181.  (JSAMPARRAY) NULL, (int) num_rows);
  182.     *out_row_ctr += num_rows;
  183.   }
  184.   /* Advance if we filled the strip. */
  185.   if (post->next_row >= post->strip_height) {
  186.     post->starting_row += post->strip_height;
  187.     post->next_row = 0;
  188.   }
  189. }
  190. /*
  191.  * Process some data in the second pass of 2-pass quantization.
  192.  */
  193. METHODDEF(void)
  194. post_process_2pass (j_decompress_ptr cinfo,
  195.     JSAMPIMAGE input_buf, JDIMENSION *in_row_group_ctr,
  196.     JDIMENSION in_row_groups_avail,
  197.     JSAMPARRAY output_buf, JDIMENSION *out_row_ctr,
  198.     JDIMENSION out_rows_avail)
  199. {
  200.   my_post_ptr post = (my_post_ptr) cinfo->post;
  201.   JDIMENSION num_rows, max_rows;
  202.   /* Reposition virtual buffer if at start of strip. */
  203.   if (post->next_row == 0) {
  204.     post->buffer = (*cinfo->mem->access_virt_sarray)
  205. ((j_common_ptr) cinfo, post->whole_image,
  206.  post->starting_row, post->strip_height, FALSE);
  207.   }
  208.   /* Determine number of rows to emit. */
  209.   num_rows = post->strip_height - post->next_row; /* available in strip */
  210.   max_rows = out_rows_avail - *out_row_ctr; /* available in output area */
  211.   if (num_rows > max_rows)
  212.     num_rows = max_rows;
  213.   /* We have to check bottom of image here, can't depend on upsampler. */
  214.   max_rows = cinfo->output_height - post->starting_row;
  215.   if (num_rows > max_rows)
  216.     num_rows = max_rows;
  217.   /* Quantize and emit data. */
  218.   (*cinfo->cquantize->color_quantize) (cinfo,
  219. post->buffer + post->next_row, output_buf + *out_row_ctr,
  220. (int) num_rows);
  221.   *out_row_ctr += num_rows;
  222.   /* Advance if we filled the strip. */
  223.   post->next_row += num_rows;
  224.   if (post->next_row >= post->strip_height) {
  225.     post->starting_row += post->strip_height;
  226.     post->next_row = 0;
  227.   }
  228. }
  229. #endif /* QUANT_2PASS_SUPPORTED */
  230. /*
  231.  * Initialize postprocessing controller.
  232.  */
  233. GLOBAL(void)
  234. jinit_d_post_controller (j_decompress_ptr cinfo, boolean need_full_buffer)
  235. {
  236.   my_post_ptr post;
  237.   post = (my_post_ptr)
  238.     (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  239. SIZEOF(my_post_controller));
  240.   cinfo->post = (struct jpeg_d_post_controller *) post;
  241.   post->pub.start_pass = start_pass_dpost;
  242.   post->whole_image = NULL; /* flag for no virtual arrays */
  243.   post->buffer = NULL; /* flag for no strip buffer */
  244.   /* Create the quantization buffer, if needed */
  245.   if (cinfo->quantize_colors) {
  246.     /* The buffer strip height is max_v_samp_factor, which is typically
  247.      * an efficient number of rows for upsampling to return.
  248.      * (In the presence of output rescaling, we might want to be smarter?)
  249.      */
  250.     post->strip_height = (JDIMENSION) cinfo->max_v_samp_factor;
  251.     if (need_full_buffer) {
  252.       /* Two-pass color quantization: need full-image storage. */
  253.       /* We round up the number of rows to a multiple of the strip height. */
  254. #ifdef QUANT_2PASS_SUPPORTED
  255.       post->whole_image = (*cinfo->mem->request_virt_sarray)
  256. ((j_common_ptr) cinfo, JPOOL_IMAGE, FALSE,
  257.  cinfo->output_width * cinfo->out_color_components,
  258.  (JDIMENSION) jround_up((long) cinfo->output_height,
  259. (long) post->strip_height),
  260.  post->strip_height);
  261. #else
  262.       ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
  263. #endif /* QUANT_2PASS_SUPPORTED */
  264.     } else {
  265.       /* One-pass color quantization: just make a strip buffer. */
  266.       post->buffer = (*cinfo->mem->alloc_sarray)
  267. ((j_common_ptr) cinfo, JPOOL_IMAGE,
  268.  cinfo->output_width * cinfo->out_color_components,
  269.  post->strip_height);
  270.     }
  271.   }
  272. }