JDSAMPLE.c
上传用户:cjw5120
上传日期:2022-05-11
资源大小:5032k
文件大小:17k
源码类别:

网络截获/分析

开发平台:

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.  * jdsample.c
  22.  *
  23.  * Copyright (C) 1991-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 upsampling routines.
  28.  *
  29.  * Upsampling input data is counted in "row groups".  A row group
  30.  * is defined to be (v_samp_factor * DCT_scaled_size / min_DCT_scaled_size)
  31.  * sample rows of each component.  Upsampling will normally produce
  32.  * max_v_samp_factor pixel rows from each row group (but this could vary
  33.  * if the upsampler is applying a scale factor of its own).
  34.  *
  35.  * An excellent reference for image resampling is
  36.  *   Digital Image Warping, George Wolberg, 1990.
  37.  *   Pub. by IEEE Computer Society Press, Los Alamitos, CA. ISBN 0-8186-8944-7.
  38.  */
  39. #define JPEG_INTERNALS
  40. #include "jinclude.h"
  41. #include "jpeglib.h"
  42. /* Pointer to routine to upsample a single component */
  43. typedef JMETHOD(void, upsample1_ptr,
  44. (j_decompress_ptr cinfo, jpeg_component_info * compptr,
  45.  JSAMPARRAY input_data, JSAMPARRAY * output_data_ptr));
  46. /* Private subobject */
  47. typedef struct {
  48.   struct jpeg_upsampler pub; /* public fields */
  49.   /* Color conversion buffer.  When using separate upsampling and color
  50.    * conversion steps, this buffer holds one upsampled row group until it
  51.    * has been color converted and output.
  52.    * Note: we do not allocate any storage for component(s) which are full-size,
  53.    * ie do not need rescaling.  The corresponding entry of color_buf[] is
  54.    * simply set to point to the input data array, thereby avoiding copying.
  55.    */
  56.   JSAMPARRAY color_buf[MAX_COMPONENTS];
  57.   /* Per-component upsampling method pointers */
  58.   upsample1_ptr methods[MAX_COMPONENTS];
  59.   int next_row_out; /* counts rows emitted from color_buf */
  60.   JDIMENSION rows_to_go; /* counts rows remaining in image */
  61.   /* Height of an input row group for each component. */
  62.   int rowgroup_height[MAX_COMPONENTS];
  63.   /* These arrays save pixel expansion factors so that int_expand need not
  64.    * recompute them each time.  They are unused for other upsampling methods.
  65.    */
  66.   UINT8 h_expand[MAX_COMPONENTS];
  67.   UINT8 v_expand[MAX_COMPONENTS];
  68. } my_upsampler;
  69. typedef my_upsampler * my_upsample_ptr;
  70. /*
  71.  * Initialize for an upsampling pass.
  72.  */
  73. METHODDEF(void)
  74. start_pass_upsample (j_decompress_ptr cinfo)
  75. {
  76.   my_upsample_ptr upsample = (my_upsample_ptr) cinfo->upsample;
  77.   /* Mark the conversion buffer empty */
  78.   upsample->next_row_out = cinfo->max_v_samp_factor;
  79.   /* Initialize total-height counter for detecting bottom of image */
  80.   upsample->rows_to_go = cinfo->output_height;
  81. }
  82. /*
  83.  * Control routine to do upsampling (and color conversion).
  84.  *
  85.  * In this version we upsample each component independently.
  86.  * We upsample one row group into the conversion buffer, then apply
  87.  * color conversion a row at a time.
  88.  */
  89. METHODDEF(void)
  90. sep_upsample (j_decompress_ptr cinfo,
  91.       JSAMPIMAGE input_buf, JDIMENSION *in_row_group_ctr,
  92.       JDIMENSION in_row_groups_avail,
  93.       JSAMPARRAY output_buf, JDIMENSION *out_row_ctr,
  94.       JDIMENSION out_rows_avail)
  95. {
  96.   my_upsample_ptr upsample = (my_upsample_ptr) cinfo->upsample;
  97.   int ci;
  98.   jpeg_component_info * compptr;
  99.   JDIMENSION num_rows;
  100.   /* Fill the conversion buffer, if it's empty */
  101.   if (upsample->next_row_out >= cinfo->max_v_samp_factor) {
  102.     for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  103.  ci++, compptr++) {
  104.       /* Invoke per-component upsample method.  Notice we pass a POINTER
  105.        * to color_buf[ci], so that fullsize_upsample can change it.
  106.        */
  107.       (*upsample->methods[ci]) (cinfo, compptr,
  108. input_buf[ci] + (*in_row_group_ctr * upsample->rowgroup_height[ci]),
  109. upsample->color_buf + ci);
  110.     }
  111.     upsample->next_row_out = 0;
  112.   }
  113.   /* Color-convert and emit rows */
  114.   /* How many we have in the buffer: */
  115.   num_rows = (JDIMENSION) (cinfo->max_v_samp_factor - upsample->next_row_out);
  116.   /* Not more than the distance to the end of the image.  Need this test
  117.    * in case the image height is not a multiple of max_v_samp_factor:
  118.    */
  119.   if (num_rows > upsample->rows_to_go) 
  120.     num_rows = upsample->rows_to_go;
  121.   /* And not more than what the client can accept: */
  122.   out_rows_avail -= *out_row_ctr;
  123.   if (num_rows > out_rows_avail)
  124.     num_rows = out_rows_avail;
  125.   (*cinfo->cconvert->color_convert) (cinfo, upsample->color_buf,
  126.      (JDIMENSION) upsample->next_row_out,
  127.      output_buf + *out_row_ctr,
  128.      (int) num_rows);
  129.   /* Adjust counts */
  130.   *out_row_ctr += num_rows;
  131.   upsample->rows_to_go -= num_rows;
  132.   upsample->next_row_out += num_rows;
  133.   /* When the buffer is emptied, declare this input row group consumed */
  134.   if (upsample->next_row_out >= cinfo->max_v_samp_factor)
  135.     (*in_row_group_ctr)++;
  136. }
  137. /*
  138.  * These are the routines invoked by sep_upsample to upsample pixel values
  139.  * of a single component.  One row group is processed per call.
  140.  */
  141. /*
  142.  * For full-size components, we just make color_buf[ci] point at the
  143.  * input buffer, and thus avoid copying any data.  Note that this is
  144.  * safe only because sep_upsample doesn't declare the input row group
  145.  * "consumed" until we are done color converting and emitting it.
  146.  */
  147. METHODDEF(void)
  148. fullsize_upsample (j_decompress_ptr cinfo, jpeg_component_info * compptr,
  149.    JSAMPARRAY input_data, JSAMPARRAY * output_data_ptr)
  150. {
  151.   *output_data_ptr = input_data;
  152. }
  153. /*
  154.  * This is a no-op version used for "uninteresting" components.
  155.  * These components will not be referenced by color conversion.
  156.  */
  157. METHODDEF(void)
  158. noop_upsample (j_decompress_ptr cinfo, jpeg_component_info * compptr,
  159.        JSAMPARRAY input_data, JSAMPARRAY * output_data_ptr)
  160. {
  161.   *output_data_ptr = NULL; /* safety check */
  162. }
  163. /*
  164.  * This version handles any integral sampling ratios.
  165.  * This is not used for typical JPEG files, so it need not be fast.
  166.  * Nor, for that matter, is it particularly accurate: the algorithm is
  167.  * simple replication of the input pixel onto the corresponding output
  168.  * pixels.  The hi-falutin sampling literature refers to this as a
  169.  * "box filter".  A box filter tends to introduce visible artifacts,
  170.  * so if you are actually going to use 3:1 or 4:1 sampling ratios
  171.  * you would be well advised to improve this code.
  172.  */
  173. METHODDEF(void)
  174. int_upsample (j_decompress_ptr cinfo, jpeg_component_info * compptr,
  175.       JSAMPARRAY input_data, JSAMPARRAY * output_data_ptr)
  176. {
  177.   my_upsample_ptr upsample = (my_upsample_ptr) cinfo->upsample;
  178.   JSAMPARRAY output_data = *output_data_ptr;
  179.   register JSAMPROW inptr, outptr;
  180.   register JSAMPLE invalue;
  181.   register int h;
  182.   JSAMPROW outend;
  183.   int h_expand, v_expand;
  184.   int inrow, outrow;
  185.   h_expand = upsample->h_expand[compptr->component_index];
  186.   v_expand = upsample->v_expand[compptr->component_index];
  187.   inrow = outrow = 0;
  188.   while (outrow < cinfo->max_v_samp_factor) {
  189.     /* Generate one output row with proper horizontal expansion */
  190.     inptr = input_data[inrow];
  191.     outptr = output_data[outrow];
  192.     outend = outptr + cinfo->output_width;
  193.     while (outptr < outend) {
  194.       invalue = *inptr++; /* don't need GETJSAMPLE() here */
  195.       for (h = h_expand; h > 0; h--) {
  196. *outptr++ = invalue;
  197.       }
  198.     }
  199.     /* Generate any additional output rows by duplicating the first one */
  200.     if (v_expand > 1) {
  201.       jcopy_sample_rows(output_data, outrow, output_data, outrow+1,
  202. v_expand-1, cinfo->output_width);
  203.     }
  204.     inrow++;
  205.     outrow += v_expand;
  206.   }
  207. }
  208. /*
  209.  * Fast processing for the common case of 2:1 horizontal and 1:1 vertical.
  210.  * It's still a box filter.
  211.  */
  212. METHODDEF(void)
  213. h2v1_upsample (j_decompress_ptr cinfo, jpeg_component_info * compptr,
  214.        JSAMPARRAY input_data, JSAMPARRAY * output_data_ptr)
  215. {
  216.   JSAMPARRAY output_data = *output_data_ptr;
  217.   register JSAMPROW inptr, outptr;
  218.   register JSAMPLE invalue;
  219.   JSAMPROW outend;
  220.   int inrow;
  221.   for (inrow = 0; inrow < cinfo->max_v_samp_factor; inrow++) {
  222.     inptr = input_data[inrow];
  223.     outptr = output_data[inrow];
  224.     outend = outptr + cinfo->output_width;
  225.     while (outptr < outend) {
  226.       invalue = *inptr++; /* don't need GETJSAMPLE() here */
  227.       *outptr++ = invalue;
  228.       *outptr++ = invalue;
  229.     }
  230.   }
  231. }
  232. /*
  233.  * Fast processing for the common case of 2:1 horizontal and 2:1 vertical.
  234.  * It's still a box filter.
  235.  */
  236. METHODDEF(void)
  237. h2v2_upsample (j_decompress_ptr cinfo, jpeg_component_info * compptr,
  238.        JSAMPARRAY input_data, JSAMPARRAY * output_data_ptr)
  239. {
  240.   JSAMPARRAY output_data = *output_data_ptr;
  241.   register JSAMPROW inptr, outptr;
  242.   register JSAMPLE invalue;
  243.   JSAMPROW outend;
  244.   int inrow, outrow;
  245.   inrow = outrow = 0;
  246.   while (outrow < cinfo->max_v_samp_factor) {
  247.     inptr = input_data[inrow];
  248.     outptr = output_data[outrow];
  249.     outend = outptr + cinfo->output_width;
  250.     while (outptr < outend) {
  251.       invalue = *inptr++; /* don't need GETJSAMPLE() here */
  252.       *outptr++ = invalue;
  253.       *outptr++ = invalue;
  254.     }
  255.     jcopy_sample_rows(output_data, outrow, output_data, outrow+1,
  256.       1, cinfo->output_width);
  257.     inrow++;
  258.     outrow += 2;
  259.   }
  260. }
  261. /*
  262.  * Fancy processing for the common case of 2:1 horizontal and 1:1 vertical.
  263.  *
  264.  * The upsampling algorithm is linear interpolation between pixel centers,
  265.  * also known as a "triangle filter".  This is a good compromise between
  266.  * speed and visual quality.  The centers of the output pixels are 1/4 and 3/4
  267.  * of the way between input pixel centers.
  268.  *
  269.  * A note about the "bias" calculations: when rounding fractional values to
  270.  * integer, we do not want to always round 0.5 up to the next integer.
  271.  * If we did that, we'd introduce a noticeable bias towards larger values.
  272.  * Instead, this code is arranged so that 0.5 will be rounded up or down at
  273.  * alternate pixel locations (a simple ordered dither pattern).
  274.  */
  275. METHODDEF(void)
  276. h2v1_fancy_upsample (j_decompress_ptr cinfo, jpeg_component_info * compptr,
  277.      JSAMPARRAY input_data, JSAMPARRAY * output_data_ptr)
  278. {
  279.   JSAMPARRAY output_data = *output_data_ptr;
  280.   register JSAMPROW inptr, outptr;
  281.   register int invalue;
  282.   register JDIMENSION colctr;
  283.   int inrow;
  284.   for (inrow = 0; inrow < cinfo->max_v_samp_factor; inrow++) {
  285.     inptr = input_data[inrow];
  286.     outptr = output_data[inrow];
  287.     /* Special case for first column */
  288.     invalue = GETJSAMPLE(*inptr++);
  289.     *outptr++ = (JSAMPLE) invalue;
  290.     *outptr++ = (JSAMPLE) ((invalue * 3 + GETJSAMPLE(*inptr) + 2) >> 2);
  291.     for (colctr = compptr->downsampled_width - 2; colctr > 0; colctr--) {
  292.       /* General case: 3/4 * nearer pixel + 1/4 * further pixel */
  293.       invalue = GETJSAMPLE(*inptr++) * 3;
  294.       *outptr++ = (JSAMPLE) ((invalue + GETJSAMPLE(inptr[-2]) + 1) >> 2);
  295.       *outptr++ = (JSAMPLE) ((invalue + GETJSAMPLE(*inptr) + 2) >> 2);
  296.     }
  297.     /* Special case for last column */
  298.     invalue = GETJSAMPLE(*inptr);
  299.     *outptr++ = (JSAMPLE) ((invalue * 3 + GETJSAMPLE(inptr[-1]) + 1) >> 2);
  300.     *outptr++ = (JSAMPLE) invalue;
  301.   }
  302. }
  303. /*
  304.  * Fancy processing for the common case of 2:1 horizontal and 2:1 vertical.
  305.  * Again a triangle filter; see comments for h2v1 case, above.
  306.  *
  307.  * It is OK for us to reference the adjacent input rows because we demanded
  308.  * context from the main buffer controller (see initialization code).
  309.  */
  310. METHODDEF(void)
  311. h2v2_fancy_upsample (j_decompress_ptr cinfo, jpeg_component_info * compptr,
  312.      JSAMPARRAY input_data, JSAMPARRAY * output_data_ptr)
  313. {
  314.   JSAMPARRAY output_data = *output_data_ptr;
  315.   register JSAMPROW inptr0, inptr1, outptr;
  316. #if BITS_IN_JSAMPLE == 8
  317.   register int thiscolsum, lastcolsum, nextcolsum;
  318. #else
  319.   register long thiscolsum, lastcolsum, nextcolsum;
  320. #endif
  321.   register JDIMENSION colctr;
  322.   int inrow, outrow, v;
  323.   inrow = outrow = 0;
  324.   while (outrow < cinfo->max_v_samp_factor) {
  325.     for (v = 0; v < 2; v++) {
  326.       /* inptr0 points to nearest input row, inptr1 points to next nearest */
  327.       inptr0 = input_data[inrow];
  328.       if (v == 0) /* next nearest is row above */
  329. inptr1 = input_data[inrow-1];
  330.       else /* next nearest is row below */
  331. inptr1 = input_data[inrow+1];
  332.       outptr = output_data[outrow++];
  333.       /* Special case for first column */
  334.       thiscolsum = GETJSAMPLE(*inptr0++) * 3 + GETJSAMPLE(*inptr1++);
  335.       nextcolsum = GETJSAMPLE(*inptr0++) * 3 + GETJSAMPLE(*inptr1++);
  336.       *outptr++ = (JSAMPLE) ((thiscolsum * 4 + 8) >> 4);
  337.       *outptr++ = (JSAMPLE) ((thiscolsum * 3 + nextcolsum + 7) >> 4);
  338.       lastcolsum = thiscolsum; thiscolsum = nextcolsum;
  339.       for (colctr = compptr->downsampled_width - 2; colctr > 0; colctr--) {
  340. /* General case: 3/4 * nearer pixel + 1/4 * further pixel in each */
  341. /* dimension, thus 9/16, 3/16, 3/16, 1/16 overall */
  342. nextcolsum = GETJSAMPLE(*inptr0++) * 3 + GETJSAMPLE(*inptr1++);
  343. *outptr++ = (JSAMPLE) ((thiscolsum * 3 + lastcolsum + 8) >> 4);
  344. *outptr++ = (JSAMPLE) ((thiscolsum * 3 + nextcolsum + 7) >> 4);
  345. lastcolsum = thiscolsum; thiscolsum = nextcolsum;
  346.       }
  347.       /* Special case for last column */
  348.       *outptr++ = (JSAMPLE) ((thiscolsum * 3 + lastcolsum + 8) >> 4);
  349.       *outptr++ = (JSAMPLE) ((thiscolsum * 4 + 7) >> 4);
  350.     }
  351.     inrow++;
  352.   }
  353. }
  354. /*
  355.  * Module initialization routine for upsampling.
  356.  */
  357. GLOBAL(void)
  358. jinit_upsampler (j_decompress_ptr cinfo)
  359. {
  360.   my_upsample_ptr upsample;
  361.   int ci;
  362.   jpeg_component_info * compptr;
  363.   unsigned int need_buffer, do_fancy;
  364.   int h_in_group, v_in_group, h_out_group, v_out_group;
  365.   upsample = (my_upsample_ptr)
  366.     (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  367. SIZEOF(my_upsampler));
  368.   cinfo->upsample = (struct jpeg_upsampler *) upsample;
  369.   upsample->pub.start_pass = start_pass_upsample;
  370.   upsample->pub.upsample = sep_upsample;
  371.   upsample->pub.need_context_rows = FALSE; /* until we find out differently */
  372.   if (cinfo->CCIR601_sampling) /* this isn't supported */
  373.     ERREXIT(cinfo, JERR_CCIR601_NOTIMPL);
  374.   /* jdmainct.c doesn't support context rows when min_DCT_scaled_size = 1,
  375.    * so don't ask for it.
  376.    */
  377.   do_fancy = cinfo->do_fancy_upsampling && cinfo->min_DCT_scaled_size > 1;
  378.   /* Verify we can handle the sampling factors, select per-component methods,
  379.    * and create storage as needed.
  380.    */
  381.   for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  382.        ci++, compptr++) {
  383.     /* Compute size of an "input group" after IDCT scaling.  This many samples
  384.      * are to be converted to max_h_samp_factor * max_v_samp_factor pixels.
  385.      */
  386.     h_in_group = (compptr->h_samp_factor * compptr->DCT_scaled_size) /
  387.  cinfo->min_DCT_scaled_size;
  388.     v_in_group = (compptr->v_samp_factor * compptr->DCT_scaled_size) /
  389.  cinfo->min_DCT_scaled_size;
  390.     h_out_group = cinfo->max_h_samp_factor;
  391.     v_out_group = cinfo->max_v_samp_factor;
  392.     upsample->rowgroup_height[ci] = v_in_group; /* save for use later */
  393.     need_buffer = TRUE;
  394.     if (! compptr->component_needed) {
  395.       /* Don't bother to upsample an uninteresting component. */
  396.       upsample->methods[ci] = noop_upsample;
  397.       need_buffer = FALSE;
  398.     } else if (h_in_group == h_out_group && v_in_group == v_out_group) {
  399.       /* Fullsize components can be processed without any work. */
  400.       upsample->methods[ci] = fullsize_upsample;
  401.       need_buffer = FALSE;
  402.     } else if (h_in_group * 2 == h_out_group &&
  403.        v_in_group == v_out_group) {
  404.       /* Special cases for 2h1v upsampling */
  405.       if (do_fancy && compptr->downsampled_width > 2)
  406. upsample->methods[ci] = h2v1_fancy_upsample;
  407.       else
  408. upsample->methods[ci] = h2v1_upsample;
  409.     } else if (h_in_group * 2 == h_out_group &&
  410.        v_in_group * 2 == v_out_group) {
  411.       /* Special cases for 2h2v upsampling */
  412.       if (do_fancy && compptr->downsampled_width > 2) {
  413. upsample->methods[ci] = h2v2_fancy_upsample;
  414. upsample->pub.need_context_rows = TRUE;
  415.       } else
  416. upsample->methods[ci] = h2v2_upsample;
  417.     } else if ((h_out_group % h_in_group) == 0 &&
  418.        (v_out_group % v_in_group) == 0) {
  419.       /* Generic integral-factors upsampling method */
  420.       upsample->methods[ci] = int_upsample;
  421.       upsample->h_expand[ci] = (UINT8) (h_out_group / h_in_group);
  422.       upsample->v_expand[ci] = (UINT8) (v_out_group / v_in_group);
  423.     } else
  424.       ERREXIT(cinfo, JERR_FRACT_SAMPLE_NOTIMPL);
  425.     if (need_buffer) {
  426.       upsample->color_buf[ci] = (*cinfo->mem->alloc_sarray)
  427. ((j_common_ptr) cinfo, JPOOL_IMAGE,
  428.  (JDIMENSION) jround_up((long) cinfo->output_width,
  429. (long) cinfo->max_h_samp_factor),
  430.  (JDIMENSION) cinfo->max_v_samp_factor);
  431.     }
  432.   }
  433. }