setclrs.c
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:10k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: setclrs.c,v 1.2.48.3 2004/07/09 02:00:18 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #include "env.h"    /* standard libraries & #defines */
  50. #define  YUV_MAIN   /* declare all yuv-specific data here */
  51. #include "yuv.h"    /* YUV-to-RGB conversion tables & macros */
  52. #include "clip.h"   /* macros for clipping & dithering */
  53. #include "colorlib.h" /* ensure that prototypes get extern C'ed */
  54. /* from env.c: */
  55. extern int CheckCPUType ();
  56. /* from rgbpal.c: */
  57. extern void InitializePalettes ();
  58. /* from clip.c: */
  59. extern void InitializeClipTables ();
  60. /* current color adjustment parameters: */
  61. static int color_conversion_tables_inited = 0;
  62. static float cur_brightness, cur_contrast, cur_saturation, cur_hue;
  63. /*
  64.  * Convert a value in the range of [-1,1],
  65.  * to a new range [l,h]; with a middle value equal to m.
  66.  */
  67. static double chrange (double x, double l, double m, double h)
  68. {
  69.     if (x >= 0.) {
  70.         if (x > 1.) x = 1.;
  71.         x = m + (h - m) * x;
  72.     } else {
  73.         if (x < -1.) x = -1.;
  74.         x = m + (m - l) * x;
  75.     }
  76.     return x;
  77. }
  78. /*
  79.  * Checks if variable is signicantly different from zero.
  80.  */
  81. static int is (double val)
  82. {
  83.     return fabs(val) > 0.01;    /* < 1% is not considered a change */
  84. }
  85. /*
  86.  * Returns current state of "from/to I420" converters.
  87.  * Use:
  88.  *  void GetSrcI420Colors (float *brightness, float *contrast, float *saturation, float *hue);
  89.  * Output:
  90.  *  brightness - brightness adjustment [-1,1], 0 - default;
  91.  *  contrast   - contrast adjustment   [-1,1], 0 - default;
  92.  *  saturation - saturation adjustment [-1,1], 0 - default;
  93.  *  hue        - hue adjustment        [-1,1], 0 - default;
  94.  * Returns:
  95.  *  none.
  96.  */
  97. void GetSrcI420Colors (float *brightness, float *contrast, float *saturation, float *hue)
  98. {
  99.     if (brightness && contrast && saturation && hue)
  100.     {
  101. *brightness = cur_brightness;
  102. *contrast   = cur_contrast;
  103. *saturation = cur_saturation;
  104. *hue     = cur_hue;
  105.     }
  106. }
  107. /*
  108.  * Initializes "from/to I420" converters.
  109.  * Use:
  110.  *  void SetSrcI420Colors (float brightness, float contrast, float saturation, float hue);
  111.  *  void SetDestI420Colors (float brightness, float contrast, float saturation, float hue);
  112.  * Input:
  113.  *  brightness - brightness adjustment [-1,1], 0 - default;
  114.  *  contrast   - contrast adjustment   [-1,1], 0 - default;
  115.  *  saturation - saturation adjustment [-1,1], 0 - default;
  116.  *  hue        - hue adjustment        [-1,1], 0 - default;
  117.  * Returns:
  118.  *  none.
  119.  */
  120. void SetSrcI420Colors (float brightness, float contrast, float saturation, float hue)
  121. {
  122.     /* check if we have never been called: */
  123.     if (!color_conversion_tables_inited) {
  124.         /* identify type of CPU used: */
  125.         CheckCPUType ();
  126.         /* initialize clipping tables: */
  127.         InitializeClipTables ();
  128.         /* set default palettes for RGB8 formats: */
  129. #if defined _FAT_HXCOLOR || defined HELIX_FEATURE_CC_RGB8out
  130.         InitializePalettes ();
  131. #endif
  132.         /* set indicator: */
  133.         color_conversion_tables_inited ++;
  134.         goto regenerate_tables;
  135.     }
  136.     /* check if we need to re-generate color conversion tables: */
  137.     if (is (cur_brightness - brightness) ||
  138.         is (cur_contrast - contrast)     ||
  139.         is (cur_saturation - saturation) ||
  140.         is (cur_hue - hue)) {
  141.         /* process color-adjustment parameters: */
  142.         double alpha, beta, gamma, kappa, lambda;
  143.         double cos_alpha, xi_sin_alpha, minus_zeta_sin_alpha;
  144.         register int i;
  145. regenerate_tables:
  146.         /* hue: */
  147.         alpha = chrange (hue, ALPHA_MIN, ALPHA_MED, ALPHA_MAX);
  148.         cos_alpha = cos (alpha);
  149.         xi_sin_alpha = XI * sin (alpha);
  150.         minus_zeta_sin_alpha = -ZETA * sin (alpha);
  151.         is_alpha = is (cur_hue = hue);
  152.         /* saturation: */
  153.         beta = chrange (saturation, BETA_MIN, BETA_MED, BETA_MAX);
  154.         is_beta = is (cur_saturation = saturation);
  155.         /* brightness: */
  156.         gamma = chrange (brightness, GAMMA_MIN, GAMMA_MED, GAMMA_MAX);
  157.         is_gamma = is (cur_brightness = brightness);
  158.         /* contrast: */
  159.         kappa = chrange (contrast, KAPPA_MIN, KAPPA_MED, KAPPA_MAX);
  160.         lambda = LAMBDA (kappa);
  161.         is_kappa = is (cur_contrast = contrast);
  162.         /* generate color conversion tables: */
  163.         for (i = 0; i < 256; i++) {
  164.             /* Y'Cr'Cb'->R'G'B' conversion tables: */
  165.             double y = lambda + (i - CCIR601_YOFFSET) * kappa; /* adjust contrast */
  166.             if (y < 0) y = 0; else if (y > CCIR601_YMAX) y = CCIR601_YMAX;
  167.             ytab  [i] = NEAREST_INT(y * YCOEF * gamma);
  168.             rvtab [i] = NEAREST_INT((i-CCIR601_VOFFSET) * cos_alpha * RVCOEF * beta * gamma); 
  169.             gvtab [i] = NEAREST_INT((i-CCIR601_VOFFSET) * GVCOEF * beta * gamma);
  170.             bvtab [i] = NEAREST_INT((i-CCIR601_VOFFSET) * xi_sin_alpha * BUCOEF * beta * gamma);
  171.             rutab [i] = NEAREST_INT((i-CCIR601_UOFFSET) * minus_zeta_sin_alpha * RVCOEF * beta * gamma);
  172.             gutab [i] = NEAREST_INT((i-CCIR601_UOFFSET) * GUCOEF * beta * gamma);
  173.             butab [i] = NEAREST_INT((i-CCIR601_UOFFSET) * cos_alpha * BUCOEF * beta * gamma);
  174.             /* Y'Cr'Cb'->Y'Cr'Cb' conversion tables: */
  175.             y = lambda + (i - CCIR601_YOFFSET) * kappa;
  176.             _yytab [i] = _CLIP(8,CCIR601_YOFFSET + NEAREST_INT(y * gamma));
  177.             _vvtab [i] = CCIR601_VOFFSET + NEAREST_INT((i-CCIR601_VOFFSET) * cos_alpha * beta * gamma);
  178.             _uutab [i] = CCIR601_UOFFSET + NEAREST_INT((i-CCIR601_UOFFSET) * cos_alpha * beta * gamma);
  179.             _vutab [i] = NEAREST_INT((i-CCIR601_UOFFSET) * minus_zeta_sin_alpha * beta * gamma);
  180.             _uvtab [i] = NEAREST_INT((i-CCIR601_VOFFSET) * xi_sin_alpha * beta * gamma);
  181.             if (!is_alpha) {
  182.                 _vvtab [i] = _CLIP(8,_vvtab [i]);
  183.                 _uutab [i] = _CLIP(8,_uutab [i]);
  184.             }
  185.         }
  186.     }
  187. }
  188. void SetDestI420Colors (float brightness, float contrast, float saturation, float hue)
  189. {
  190.     /* currently, we do not support color adjustments when destination
  191.      * format is I420 (YCrCb 4:1:1), and conversion is always CCIR 601-2 -
  192.      * compliant (regardless of values of papameters). */
  193.     register int i, j;
  194.     /* initialize y*tab[] tables: */
  195.     for (i = 0; i <= RGB_MAX; i++) {
  196.         yrtab [i] = NEAREST_INT((double)i * CCIR601_YRCOEF);
  197.         ygtab [i] = NEAREST_INT((double)i * CCIR601_YGCOEF);
  198.         ybtab [i] = NEAREST_INT((double)i * CCIR601_YBCOEF);
  199.     }
  200.     /* initialize yytab[]: */
  201.     for (i = 0; i <= YMAX; i++) {
  202.         j = NEAREST_INT((double)i * YSCALE);
  203.         if (j > CCIR601_YMAX) j = CCIR601_YMAX;
  204.         yytab [i] = j + CCIR601_YOFFSET;
  205.     }
  206.     /* initialize vrytab[]: */
  207.     for (i = -VMIN; i <= VMAX; i++) {
  208.         j = NEAREST_INT((double)i * VSCALE);
  209.         if (j < -CCIR601_VMAX/2) j = -CCIR601_VMAX/2;
  210.         if (j >  CCIR601_VMAX/2) j =  CCIR601_VMAX/2;
  211.         vrytab [VMIN+i] = j + CCIR601_VOFFSET;
  212.     }
  213.     /* initialize ubytab[]: */
  214.     for (i = -UMIN; i <= UMAX; i++) {
  215.         j = NEAREST_INT((double)i * USCALE);
  216.         if (j < -CCIR601_UMAX/2) j = -CCIR601_UMAX/2;
  217.         if (j >  CCIR601_UMAX/2) j =  CCIR601_UMAX/2;
  218.         ubytab [UMIN+i] = j + CCIR601_UOFFSET;
  219.     }
  220. }
  221. /*
  222.  * Sets RGB->I420 chroma resampling mode
  223.  * Use:
  224.  *  int SetI420ChromaResamplingMode(int nNewMode);
  225.  * Input:
  226.  *  nNewMode - a new chroma resampling mode to use
  227.  * Returns:
  228.  *  previously set mode.
  229.  */
  230. int SetI420ChromaResamplingMode(int new_mode)
  231. {
  232.     register int m = chroma_resampling_mode;
  233.     chroma_resampling_mode = new_mode;
  234.     return m;
  235. }
  236. /* yuvctrl.c -- end of file */