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

网络截获/分析

开发平台:

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.  * jccolor.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 input colorspace conversion routines.
  28.  */
  29. #define JPEG_INTERNALS
  30. #include "jinclude.h"
  31. #include "jpeglib.h"
  32. /* Private subobject */
  33. typedef struct {
  34.   struct jpeg_color_converter pub; /* public fields */
  35.   /* Private state for RGB->YCC conversion */
  36.   long * rgb_ycc_tab; /* => table for RGB to YCbCr conversion */
  37. } my_color_converter;
  38. typedef my_color_converter * my_cconvert_ptr;
  39. /**************** RGB -> YCbCr conversion: most common case **************/
  40. /*
  41.  * YCbCr is defined per CCIR 601-1, except that Cb and Cr are
  42.  * normalized to the range 0..MAXJSAMPLE rather than -0.5 .. 0.5.
  43.  * The conversion equations to be implemented are therefore
  44.  * Y  =  0.29900 * R + 0.58700 * G + 0.11400 * B
  45.  * Cb = -0.16874 * R - 0.33126 * G + 0.50000 * B  + CENTERJSAMPLE
  46.  * Cr =  0.50000 * R - 0.41869 * G - 0.08131 * B  + CENTERJSAMPLE
  47.  * (These numbers are derived from TIFF 6.0 section 21, dated 3-June-92.)
  48.  * Note: older versions of the IJG code used a zero offset of MAXJSAMPLE/2,
  49.  * rather than CENTERJSAMPLE, for Cb and Cr.  This gave equal positive and
  50.  * negative swings for Cb/Cr, but meant that grayscale values (Cb=Cr=0)
  51.  * were not represented exactly.  Now we sacrifice exact representation of
  52.  * maximum red and maximum blue in order to get exact grayscales.
  53.  *
  54.  * To avoid floating-point arithmetic, we represent the fractional constants
  55.  * as integers scaled up by 2^16 (about 4 digits precision); we have to divide
  56.  * the products by 2^16, with appropriate rounding, to get the correct answer.
  57.  *
  58.  * For even more speed, we avoid doing any multiplications in the inner loop
  59.  * by precalculating the constants times R,G,B for all possible values.
  60.  * For 8-bit JSAMPLEs this is very reasonable (only 256 entries per table);
  61.  * for 12-bit samples it is still acceptable.  It's not very reasonable for
  62.  * 16-bit samples, but if you want lossless storage you shouldn't be changing
  63.  * colorspace anyway.
  64.  * The CENTERJSAMPLE offsets and the rounding fudge-factor of 0.5 are included
  65.  * in the tables to save adding them separately in the inner loop.
  66.  */
  67. #define SCALEBITS 16 /* speediest right-shift on some machines */
  68. #define CBCR_OFFSET ((long) CENTERJSAMPLE << SCALEBITS)
  69. #define ONE_HALF ((long) 1 << (SCALEBITS-1))
  70. #define FIX(x) ((long) ((x) * (1L<<SCALEBITS) + 0.5))
  71. /* We allocate one big table and divide it up into eight parts, instead of
  72.  * doing eight alloc_small requests.  This lets us use a single table base
  73.  * address, which can be held in a register in the inner loops on many
  74.  * machines (more than can hold all eight addresses, anyway).
  75.  */
  76. #define R_Y_OFF 0 /* offset to R => Y section */
  77. #define G_Y_OFF (1*(MAXJSAMPLE+1)) /* offset to G => Y section */
  78. #define B_Y_OFF (2*(MAXJSAMPLE+1)) /* etc. */
  79. #define R_CB_OFF (3*(MAXJSAMPLE+1))
  80. #define G_CB_OFF (4*(MAXJSAMPLE+1))
  81. #define B_CB_OFF (5*(MAXJSAMPLE+1))
  82. #define R_CR_OFF B_CB_OFF /* B=>Cb, R=>Cr are the same */
  83. #define G_CR_OFF (6*(MAXJSAMPLE+1))
  84. #define B_CR_OFF (7*(MAXJSAMPLE+1))
  85. #define TABLE_SIZE (8*(MAXJSAMPLE+1))
  86. /*
  87.  * Initialize for RGB->YCC colorspace conversion.
  88.  */
  89. METHODDEF(void)
  90. rgb_ycc_start (j_compress_ptr cinfo)
  91. {
  92.   my_cconvert_ptr cconvert = (my_cconvert_ptr) cinfo->cconvert;
  93.   long * rgb_ycc_tab;
  94.   long i;
  95.   /* Allocate and fill in the conversion tables. */
  96.   cconvert->rgb_ycc_tab = rgb_ycc_tab = (long *)
  97.     (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  98. (TABLE_SIZE * SIZEOF(long)));
  99.   for (i = 0; i <= MAXJSAMPLE; i++) {
  100.     rgb_ycc_tab[i+R_Y_OFF] = FIX(0.29900) * i;
  101.     rgb_ycc_tab[i+G_Y_OFF] = FIX(0.58700) * i;
  102.     rgb_ycc_tab[i+B_Y_OFF] = FIX(0.11400) * i     + ONE_HALF;
  103.     rgb_ycc_tab[i+R_CB_OFF] = (-FIX(0.16874)) * i;
  104.     rgb_ycc_tab[i+G_CB_OFF] = (-FIX(0.33126)) * i;
  105.     /* We use a rounding fudge-factor of 0.5-epsilon for Cb and Cr.
  106.      * This ensures that the maximum output will round to MAXJSAMPLE
  107.      * not MAXJSAMPLE+1, and thus that we don't have to range-limit.
  108.      */
  109.     rgb_ycc_tab[i+B_CB_OFF] = FIX(0.50000) * i    + CBCR_OFFSET + ONE_HALF-1;
  110. /*  B=>Cb and R=>Cr tables are the same
  111.     rgb_ycc_tab[i+R_CR_OFF] = FIX(0.50000) * i    + CBCR_OFFSET + ONE_HALF-1;
  112. */
  113.     rgb_ycc_tab[i+G_CR_OFF] = (-FIX(0.41869)) * i;
  114.     rgb_ycc_tab[i+B_CR_OFF] = (-FIX(0.08131)) * i;
  115.   }
  116. }
  117. /*
  118.  * Convert some rows of samples to the JPEG colorspace.
  119.  *
  120.  * Note that we change from the application's interleaved-pixel format
  121.  * to our internal noninterleaved, one-plane-per-component format.
  122.  * The input buffer is therefore three times as wide as the output buffer.
  123.  *
  124.  * A starting row offset is provided only for the output buffer.  The caller
  125.  * can easily adjust the passed input_buf value to accommodate any row
  126.  * offset required on that side.
  127.  */
  128. METHODDEF(void)
  129. rgb_ycc_convert (j_compress_ptr cinfo,
  130.  JSAMPARRAY input_buf, JSAMPIMAGE output_buf,
  131.  JDIMENSION output_row, int num_rows)
  132. {
  133.   my_cconvert_ptr cconvert = (my_cconvert_ptr) cinfo->cconvert;
  134.   register int r, g, b;
  135.   register long * ctab = cconvert->rgb_ycc_tab;
  136.   register JSAMPROW inptr;
  137.   register JSAMPROW outptr0, outptr1, outptr2;
  138.   register JDIMENSION col;
  139.   JDIMENSION num_cols = cinfo->image_width;
  140.   while (--num_rows >= 0) {
  141.     inptr = *input_buf++;
  142.     outptr0 = output_buf[0][output_row];
  143.     outptr1 = output_buf[1][output_row];
  144.     outptr2 = output_buf[2][output_row];
  145.     output_row++;
  146.     for (col = 0; col < num_cols; col++) {
  147.       r = GETJSAMPLE(inptr[RGB_RED]);
  148.       g = GETJSAMPLE(inptr[RGB_GREEN]);
  149.       b = GETJSAMPLE(inptr[RGB_BLUE]);
  150.       inptr += RGB_PIXELSIZE;
  151.       /* If the inputs are 0..MAXJSAMPLE, the outputs of these equations
  152.        * must be too; we do not need an explicit range-limiting operation.
  153.        * Hence the value being shifted is never negative, and we don't
  154.        * need the general RIGHT_SHIFT macro.
  155.        */
  156.       /* Y */
  157.       outptr0[col] = (JSAMPLE)
  158. ((ctab[r+R_Y_OFF] + ctab[g+G_Y_OFF] + ctab[b+B_Y_OFF])
  159.  >> SCALEBITS);
  160.       /* Cb */
  161.       outptr1[col] = (JSAMPLE)
  162. ((ctab[r+R_CB_OFF] + ctab[g+G_CB_OFF] + ctab[b+B_CB_OFF])
  163.  >> SCALEBITS);
  164.       /* Cr */
  165.       outptr2[col] = (JSAMPLE)
  166. ((ctab[r+R_CR_OFF] + ctab[g+G_CR_OFF] + ctab[b+B_CR_OFF])
  167.  >> SCALEBITS);
  168.     }
  169.   }
  170. }
  171. /**************** Cases other than RGB -> YCbCr **************/
  172. /*
  173.  * Convert some rows of samples to the JPEG colorspace.
  174.  * This version handles RGB->grayscale conversion, which is the same
  175.  * as the RGB->Y portion of RGB->YCbCr.
  176.  * We assume rgb_ycc_start has been called (we only use the Y tables).
  177.  */
  178. METHODDEF(void)
  179. rgb_gray_convert (j_compress_ptr cinfo,
  180.   JSAMPARRAY input_buf, JSAMPIMAGE output_buf,
  181.   JDIMENSION output_row, int num_rows)
  182. {
  183.   my_cconvert_ptr cconvert = (my_cconvert_ptr) cinfo->cconvert;
  184.   register int r, g, b;
  185.   register long * ctab = cconvert->rgb_ycc_tab;
  186.   register JSAMPROW inptr;
  187.   register JSAMPROW outptr;
  188.   register JDIMENSION col;
  189.   JDIMENSION num_cols = cinfo->image_width;
  190.   while (--num_rows >= 0) {
  191.     inptr = *input_buf++;
  192.     outptr = output_buf[0][output_row];
  193.     output_row++;
  194.     for (col = 0; col < num_cols; col++) {
  195.       r = GETJSAMPLE(inptr[RGB_RED]);
  196.       g = GETJSAMPLE(inptr[RGB_GREEN]);
  197.       b = GETJSAMPLE(inptr[RGB_BLUE]);
  198.       inptr += RGB_PIXELSIZE;
  199.       /* Y */
  200.       outptr[col] = (JSAMPLE)
  201. ((ctab[r+R_Y_OFF] + ctab[g+G_Y_OFF] + ctab[b+B_Y_OFF])
  202.  >> SCALEBITS);
  203.     }
  204.   }
  205. }
  206. /*
  207.  * Convert some rows of samples to the JPEG colorspace.
  208.  * This version handles Adobe-style CMYK->YCCK conversion,
  209.  * where we convert R=1-C, G=1-M, and B=1-Y to YCbCr using the same
  210.  * conversion as above, while passing K (black) unchanged.
  211.  * We assume rgb_ycc_start has been called.
  212.  */
  213. METHODDEF(void)
  214. cmyk_ycck_convert (j_compress_ptr cinfo,
  215.    JSAMPARRAY input_buf, JSAMPIMAGE output_buf,
  216.    JDIMENSION output_row, int num_rows)
  217. {
  218.   my_cconvert_ptr cconvert = (my_cconvert_ptr) cinfo->cconvert;
  219.   register int r, g, b;
  220.   register long * ctab = cconvert->rgb_ycc_tab;
  221.   register JSAMPROW inptr;
  222.   register JSAMPROW outptr0, outptr1, outptr2, outptr3;
  223.   register JDIMENSION col;
  224.   JDIMENSION num_cols = cinfo->image_width;
  225.   while (--num_rows >= 0) {
  226.     inptr = *input_buf++;
  227.     outptr0 = output_buf[0][output_row];
  228.     outptr1 = output_buf[1][output_row];
  229.     outptr2 = output_buf[2][output_row];
  230.     outptr3 = output_buf[3][output_row];
  231.     output_row++;
  232.     for (col = 0; col < num_cols; col++) {
  233.       r = MAXJSAMPLE - GETJSAMPLE(inptr[0]);
  234.       g = MAXJSAMPLE - GETJSAMPLE(inptr[1]);
  235.       b = MAXJSAMPLE - GETJSAMPLE(inptr[2]);
  236.       /* K passes through as-is */
  237.       outptr3[col] = inptr[3]; /* don't need GETJSAMPLE here */
  238.       inptr += 4;
  239.       /* If the inputs are 0..MAXJSAMPLE, the outputs of these equations
  240.        * must be too; we do not need an explicit range-limiting operation.
  241.        * Hence the value being shifted is never negative, and we don't
  242.        * need the general RIGHT_SHIFT macro.
  243.        */
  244.       /* Y */
  245.       outptr0[col] = (JSAMPLE)
  246. ((ctab[r+R_Y_OFF] + ctab[g+G_Y_OFF] + ctab[b+B_Y_OFF])
  247.  >> SCALEBITS);
  248.       /* Cb */
  249.       outptr1[col] = (JSAMPLE)
  250. ((ctab[r+R_CB_OFF] + ctab[g+G_CB_OFF] + ctab[b+B_CB_OFF])
  251.  >> SCALEBITS);
  252.       /* Cr */
  253.       outptr2[col] = (JSAMPLE)
  254. ((ctab[r+R_CR_OFF] + ctab[g+G_CR_OFF] + ctab[b+B_CR_OFF])
  255.  >> SCALEBITS);
  256.     }
  257.   }
  258. }
  259. /*
  260.  * Convert some rows of samples to the JPEG colorspace.
  261.  * This version handles grayscale output with no conversion.
  262.  * The source can be either plain grayscale or YCbCr (since Y == gray).
  263.  */
  264. METHODDEF(void)
  265. grayscale_convert (j_compress_ptr cinfo,
  266.    JSAMPARRAY input_buf, JSAMPIMAGE output_buf,
  267.    JDIMENSION output_row, int num_rows)
  268. {
  269.   register JSAMPROW inptr;
  270.   register JSAMPROW outptr;
  271.   register JDIMENSION col;
  272.   JDIMENSION num_cols = cinfo->image_width;
  273.   int instride = cinfo->input_components;
  274.   while (--num_rows >= 0) {
  275.     inptr = *input_buf++;
  276.     outptr = output_buf[0][output_row];
  277.     output_row++;
  278.     for (col = 0; col < num_cols; col++) {
  279.       outptr[col] = inptr[0]; /* don't need GETJSAMPLE() here */
  280.       inptr += instride;
  281.     }
  282.   }
  283. }
  284. /*
  285.  * Convert some rows of samples to the JPEG colorspace.
  286.  * This version handles multi-component colorspaces without conversion.
  287.  * We assume input_components == num_components.
  288.  */
  289. METHODDEF(void)
  290. null_convert (j_compress_ptr cinfo,
  291.       JSAMPARRAY input_buf, JSAMPIMAGE output_buf,
  292.       JDIMENSION output_row, int num_rows)
  293. {
  294.   register JSAMPROW inptr;
  295.   register JSAMPROW outptr;
  296.   register JDIMENSION col;
  297.   register int ci;
  298.   int nc = cinfo->num_components;
  299.   JDIMENSION num_cols = cinfo->image_width;
  300.   while (--num_rows >= 0) {
  301.     /* It seems fastest to make a separate pass for each component. */
  302.     for (ci = 0; ci < nc; ci++) {
  303.       inptr = *input_buf;
  304.       outptr = output_buf[ci][output_row];
  305.       for (col = 0; col < num_cols; col++) {
  306. outptr[col] = inptr[ci]; /* don't need GETJSAMPLE() here */
  307. inptr += nc;
  308.       }
  309.     }
  310.     input_buf++;
  311.     output_row++;
  312.   }
  313. }
  314. /*
  315.  * Empty method for start_pass.
  316.  */
  317. METHODDEF(void)
  318. null_method (j_compress_ptr cinfo)
  319. {
  320.   /* no work needed */
  321. }
  322. /*
  323.  * Module initialization routine for input colorspace conversion.
  324.  */
  325. GLOBAL(void)
  326. jinit_color_converter (j_compress_ptr cinfo)
  327. {
  328.   my_cconvert_ptr cconvert;
  329.   cconvert = (my_cconvert_ptr)
  330.     (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  331. SIZEOF(my_color_converter));
  332.   cinfo->cconvert = (struct jpeg_color_converter *) cconvert;
  333.   /* set start_pass to null method until we find out differently */
  334.   cconvert->pub.start_pass = null_method;
  335.   /* Make sure input_components agrees with in_color_space */
  336.   switch (cinfo->in_color_space) {
  337.   case JCS_GRAYSCALE:
  338.     if (cinfo->input_components != 1)
  339.       ERREXIT(cinfo, JERR_BAD_IN_COLORSPACE);
  340.     break;
  341.   case JCS_RGB:
  342. #if RGB_PIXELSIZE != 3
  343.     if (cinfo->input_components != RGB_PIXELSIZE)
  344.       ERREXIT(cinfo, JERR_BAD_IN_COLORSPACE);
  345.     break;
  346. #endif /* else share code with YCbCr */
  347.   case JCS_YCbCr:
  348.     if (cinfo->input_components != 3)
  349.       ERREXIT(cinfo, JERR_BAD_IN_COLORSPACE);
  350.     break;
  351.   case JCS_CMYK:
  352.   case JCS_YCCK:
  353.     if (cinfo->input_components != 4)
  354.       ERREXIT(cinfo, JERR_BAD_IN_COLORSPACE);
  355.     break;
  356.   default: /* JCS_UNKNOWN can be anything */
  357.     if (cinfo->input_components < 1)
  358.       ERREXIT(cinfo, JERR_BAD_IN_COLORSPACE);
  359.     break;
  360.   }
  361.   /* Check num_components, set conversion method based on requested space */
  362.   switch (cinfo->jpeg_color_space) {
  363.   case JCS_GRAYSCALE:
  364.     if (cinfo->num_components != 1)
  365.       ERREXIT(cinfo, JERR_BAD_J_COLORSPACE);
  366.     if (cinfo->in_color_space == JCS_GRAYSCALE)
  367.       cconvert->pub.color_convert = grayscale_convert;
  368.     else if (cinfo->in_color_space == JCS_RGB) {
  369.       cconvert->pub.start_pass = rgb_ycc_start;
  370.       cconvert->pub.color_convert = rgb_gray_convert;
  371.     } else if (cinfo->in_color_space == JCS_YCbCr)
  372.       cconvert->pub.color_convert = grayscale_convert;
  373.     else
  374.       ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL);
  375.     break;
  376.   case JCS_RGB:
  377.     if (cinfo->num_components != 3)
  378.       ERREXIT(cinfo, JERR_BAD_J_COLORSPACE);
  379.     if (cinfo->in_color_space == JCS_RGB && RGB_PIXELSIZE == 3)
  380.       cconvert->pub.color_convert = null_convert;
  381.     else
  382.       ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL);
  383.     break;
  384.   case JCS_YCbCr:
  385.     if (cinfo->num_components != 3)
  386.       ERREXIT(cinfo, JERR_BAD_J_COLORSPACE);
  387.     if (cinfo->in_color_space == JCS_RGB) {
  388.       cconvert->pub.start_pass = rgb_ycc_start;
  389.       cconvert->pub.color_convert = rgb_ycc_convert;
  390.     } else if (cinfo->in_color_space == JCS_YCbCr)
  391.       cconvert->pub.color_convert = null_convert;
  392.     else
  393.       ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL);
  394.     break;
  395.   case JCS_CMYK:
  396.     if (cinfo->num_components != 4)
  397.       ERREXIT(cinfo, JERR_BAD_J_COLORSPACE);
  398.     if (cinfo->in_color_space == JCS_CMYK)
  399.       cconvert->pub.color_convert = null_convert;
  400.     else
  401.       ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL);
  402.     break;
  403.   case JCS_YCCK:
  404.     if (cinfo->num_components != 4)
  405.       ERREXIT(cinfo, JERR_BAD_J_COLORSPACE);
  406.     if (cinfo->in_color_space == JCS_CMYK) {
  407.       cconvert->pub.start_pass = rgb_ycc_start;
  408.       cconvert->pub.color_convert = cmyk_ycck_convert;
  409.     } else if (cinfo->in_color_space == JCS_YCCK)
  410.       cconvert->pub.color_convert = null_convert;
  411.     else
  412.       ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL);
  413.     break;
  414.   default: /* allow null conversion of JCS_UNKNOWN */
  415.     if (cinfo->jpeg_color_space != cinfo->in_color_space ||
  416. cinfo->num_components != cinfo->input_components)
  417.       ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL);
  418.     cconvert->pub.color_convert = null_convert;
  419.     break;
  420.   }
  421. }