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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: yuv2rgb.c,v 1.2.8.1 2004/07/09 02:00:07 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 <math.h>
  50. #include "nostatic/colorlib.h"
  51. #include "nostatic/yuv.h"
  52. /* macros to check big/little endiannes of the system: */
  53. //const static union {char c[4]; unsigned int l;} _1234 = {"01020304"};
  54. #if defined (_MACINTOSH) && defined (_DEBUG)
  55. #pragma global_optimizer on
  56. #endif
  57. /*
  58.  * Convert a value in the range of [-1,1],
  59.  * to a new range [l,h]; with a middle value equal to m.
  60.  */
  61. static double chrange (double x, double l, double m, double h)
  62. {
  63.     if (x >= 0.) {
  64.         if (x > 1.) x = 1.;
  65.         x = m + (h - m) * x;
  66.     } else {
  67.         if (x < -1.) x = -1.;
  68.         x = m + (m - l) * x;
  69.     }
  70.     return x;
  71. }
  72. /*
  73.  * Checks if variable is signicantly different from zero.
  74.  */
  75. static int is (double val)
  76. {
  77.     return fabs(val) > 0.01;   
  78. }
  79. /*
  80.  * Initializes "from/to I420" converters.
  81.  * Use:
  82.  *  void SetSrcI420Colors (float brightness, float contrast, float saturation, float hue);
  83.  *  void SetDestI420Colors (float brightness, float contrast, float saturation, float hue);
  84.  * Input:
  85.  *  brightness - brightness adjustment [-1,1], 0 - default;
  86.  *  contrast   - contrast adjustment   [-1,1], 0 - default;
  87.  *  saturation - saturation adjustment [-1,1], 0 - default;
  88.  *  hue        - hue adjustment        [-1,1], 0 - default;
  89.  * Returns:
  90.  *  none.
  91.  */
  92. void SetSrcI420Colors (float brightness, float contrast, float saturation, float hue,
  93.        color_data_t* pcd)
  94. {
  95.     /* check if we need to generate new color conversion tables: */
  96.     if (!pcd->color_conversion_tables_inited  ||
  97.         is (pcd->cur_brightness - brightness) ||
  98.         is (pcd->cur_contrast - contrast)     ||
  99.         is (pcd->cur_saturation - saturation) ||
  100.         is (pcd->cur_hue - hue)) {
  101.         double alpha, beta, gamma, kappa, lambda;
  102.         double cos_alpha, xi_sin_alpha, minus_zeta_sin_alpha;
  103.         register int i;
  104.         int default_palette_idx [RGB_MAX+1];
  105.         //Generate palette index.
  106.         for(i=0; i<=255; i++ )
  107.             default_palette_idx[i] = i;
  108.         /* hue: */
  109.         alpha = chrange (hue, ALPHA_MIN, ALPHA_MED, ALPHA_MAX);
  110.         cos_alpha = cos (alpha);
  111.         xi_sin_alpha = XI * sin (alpha);
  112.         minus_zeta_sin_alpha = -ZETA * sin (alpha);
  113. pcd->is_alpha = is (pcd->cur_hue = hue);
  114.         /* saturation: */
  115.         beta = chrange (saturation, BETA_MIN, BETA_MED, BETA_MAX);
  116.         pcd->is_beta = is (pcd->cur_saturation = saturation);
  117.         /* brightness: */
  118.         gamma = chrange (brightness, GAMMA_MIN, GAMMA_MED, GAMMA_MAX);
  119.         pcd->is_gamma = is (pcd->cur_brightness = brightness);
  120.         /* contrast: */
  121.         kappa = chrange (contrast, KAPPA_MIN, KAPPA_MED, KAPPA_MAX);
  122.         lambda = LAMBDA (kappa);
  123.         pcd->is_kappa = is (pcd->cur_contrast = contrast);
  124.         /*
  125.          * Check if we need to generate clip tables & default palette:
  126.          */
  127.         if (!pcd->color_conversion_tables_inited) {
  128.             /* Init clip tables. CLIP4/5/6 includes chop to 3/5/6 bits */
  129.             for (i = -CLIPNEG; i < CLIPRNG + CLIPPOS; i++) {
  130.                 if (i < 0)
  131.                 {
  132. #ifdef HELIX_FEATURE_CC_RGB444out                    
  133.                     CLIP4[i] = 0;
  134.                     CLIP8[i] = 0;
  135. #endif
  136. #ifdef HELIX_FEATURE_CC_RGB565out                    
  137.                     CLIP5[i] = 0;
  138.                     CLIP6[i] = 0;           /* clip */
  139. #endif                    
  140.                 }
  141.                 else if (i > 255)
  142.                 {
  143. #ifdef HELIX_FEATURE_CC_RGB444out                    
  144.                     CLIP4[i] = 255 >> 4;
  145.                     CLIP8[i] = /*JW255*/243;
  146. #endif                        
  147. #ifdef HELIX_FEATURE_CC_RGB565out
  148.                     CLIP5[i] = 255 >> 3;
  149.                     CLIP6[i] = 255 >> 2;    /* clip */
  150. #endif                    
  151.                 }
  152.                 else
  153.                 {
  154. #ifdef HELIX_FEATURE_CC_RGB444out                    
  155.                     CLIP4[i] = i >> 4;      /* chop to 4 bits */
  156.     if (i > 243)
  157.        CLIP8[i] = 243;
  158.     else
  159.        CLIP8[i] = i;        /* leave at 8 bits */
  160. #endif
  161. #ifdef HELIX_FEATURE_CC_RGB565out                    
  162.                     CLIP5[i] = i >> 3;      /* chop to 5 bits */
  163.                     CLIP6[i] = i >> 2;      /* chop to 6 bits */
  164. #endif                    
  165.                 }
  166.             }
  167.             /* set indicator: */
  168.             pcd->color_conversion_tables_inited ++;
  169.         }
  170.         /*
  171.          * Initialize color conversion tables.
  172.          */
  173.         for (i = 0; i < 256; i++) {
  174.             /* Y'Cr'Cb'->R'G'B' conversion tables: */
  175.             double y = lambda + (i - CCIR601_YOFFSET) * kappa; /* adjust contrast */
  176.             if (y < 0) y = 0; else if (y > CCIR601_YMAX) y = CCIR601_YMAX;
  177.             pcd->ytab  [i] = INT(y * YCOEF * gamma);
  178.             pcd->rvtab [i] = INT((i-CCIR601_VOFFSET) * cos_alpha * RVCOEF * beta * gamma);
  179.             pcd->gvtab [i] = INT((i-CCIR601_VOFFSET) * GVCOEF * beta * gamma);
  180.             pcd->bvtab [i] = INT((i-CCIR601_VOFFSET) * xi_sin_alpha * BUCOEF * beta * gamma);
  181.             pcd->rutab [i] = INT((i-CCIR601_UOFFSET) * minus_zeta_sin_alpha * RVCOEF * beta * gamma);
  182.             pcd->gutab [i] = INT((i-CCIR601_UOFFSET) * GUCOEF * beta * gamma);
  183.             pcd->butab [i] = INT((i-CCIR601_UOFFSET) * cos_alpha * BUCOEF * beta * gamma);
  184.         }
  185.     }
  186. }
  187. /*
  188.  * Checks format conversion parameters.
  189.  * Use:
  190.  *  int chk_args (unsigned char *dest_ptr, int dest_width, int dest_height,
  191.  *      int dest_pitch, int dest_x, int dest_y, int dest_dx, int dest_dy,
  192.  *      unsigned char *src_ptr, int src_width, int src_height,
  193.  *      int src_pitch, int src_x, int src_y, int src_dx, int src_dy,
  194.  *      int *p_scale_x, int *p_scale_y);
  195.  * Input:
  196.  *  dest_ptr - pointer to a destination buffer
  197.  *  dest_width, dest_height - width/height of the destination image (pixels)
  198.  *  dest_pitch - pitch of the dest. buffer (in bytes; <0 - if bottom up image)
  199.  *  dest_x, dest_y, dest_dx, dest_dy - destination rectangle (pixels)
  200.  *  src_ptr - pointer to an input image
  201.  *  src_width, src_height - width/height of the input image (pixels)
  202.  *  src_pitch - pitch of the source buffer (in bytes; <0 - if bottom up image)
  203.  *  src_x, src_y, src_dx, src_dy - source rectangle (pixels)
  204.  * Output:
  205.  *  p_scale_x, p_scale_y - scale factors for x,y axes
  206.  *      (currently only 1:1, and 2:1 scale factors are allowed)
  207.  * Returns:
  208.  *  0 - if success; -1 if failure.
  209.  */
  210. int
  211. chk_args (unsigned char *dest_ptr, int dest_width, int dest_height,
  212.     int dest_pitch, int dest_x, int dest_y, int dest_dx, int dest_dy,
  213.     unsigned char *src_ptr, int src_width, int src_height,
  214.     int src_pitch, int src_x, int src_y, int src_dx, int src_dy,
  215.     int *p_scale_x, int *p_scale_y)
  216. {
  217.     /* alignments: */
  218.     if (((unsigned)dest_ptr & 3) || (dest_pitch & 3) ||
  219.         ((unsigned)src_ptr  & 3) || (src_pitch  & 3) ||
  220.     /* image sizes: */
  221.         dest_width <= 0 || dest_height <= 0 ||
  222.         src_width  <= 0 || src_height  <= 0 ||
  223.     /* rectangles: */
  224.         dest_x < 0 || dest_y < 0 || dest_dx <= 0 || dest_dy <= 0 ||
  225.         src_x  < 0 || src_y  < 0 || src_dx  <= 0 || src_dy  <= 0 ||
  226.     /* overlaps: */
  227.         dest_width < dest_x + dest_dx || dest_height < dest_y + dest_dy ||
  228.         src_width  < src_x  + src_dx  || src_height  < src_y  + src_dy)
  229.         goto fail;
  230.     /* scale factors: */
  231.     if (dest_dx == src_dx)          *p_scale_x = 1; /* full res */
  232.     else if (dest_dx == 2 * src_dx) *p_scale_x = 2; /* double res */
  233.     else if (src_dx == 2 * dest_dx) *p_scale_x = 0; /* half res */
  234.     else goto fail;
  235.     if (dest_dy == src_dy)          *p_scale_y = 1; /* full res */
  236.     else if (dest_dy == 2 * src_dy) *p_scale_y = 2; /* double res */
  237.     else if (src_dx == 2 * dest_dx) *p_scale_y = 0; /* half res */
  238.     else goto fail;
  239.     /* success: */
  240.     return 1;
  241.     /* failure: */
  242. fail:
  243.     return 0;
  244. }
  245. int SetI420ChromaResamplingMode(int new_mode)
  246. {
  247.     return 0;
  248. }
  249. void InitColorData(color_data_t* pcd)
  250. {
  251.     pcd->color_conversion_tables_inited = 0;
  252.     pcd->is_alpha = 0;
  253.     pcd->is_beta  = 0;
  254.     pcd->is_gamma = 0;
  255.     pcd->is_kappa = 0;
  256.     
  257.     pcd->cur_brightness = 0;
  258.     pcd->cur_contrast   = 0;
  259.     pcd->cur_saturation = 0;
  260.     pcd->cur_hue        = 0;
  261. }