setclrs.c
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:9k
源码类别:

Symbian

开发平台:

C/C++

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