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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: yuv.h,v 1.1.1.1.50.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. #ifndef __YUV_H__
  50. #define __YUV_H__   1
  51. #ifdef __cplusplus
  52. extern "C" {
  53. #endif
  54. /*
  55.  * This header contains a number of data declarations that supposed
  56.  * to be shared between several modules. There should be only one module
  57.  * that would own these data (i.e. declare them locally as public data),
  58.  * while the others just should be able to access them (i.e. they would
  59.  * need to see them declared as "extern"). The following macros would
  60.  * allow us to combine both types of data declarations in a single place.
  61.  */
  62. #ifndef YUV_MAIN
  63. #define YUV_EXTERN  extern
  64. #else
  65. #define YUV_EXTERN  /**/
  66. #endif
  67. /*
  68.  * CCIR Rec. 601-2 definition of YCrCb color space.
  69.  *
  70.  * Given a primary analogue RGB signal (R,G,and B components are in the
  71.  * range of 0..1 volt), the luminance signal is defined as:
  72.  *      Y = 0.299 R + 0.587 G + 0.114 B.
  73.  * Signals of color-defferences, are therefore:
  74.  *      (R-Y) = 0.701 R - 0.587 G - 0.114 B, and
  75.  *      (B-Y) = -0.299 R - 0.587 G + 0.886 B.
  76.  * Using normalization (we want (R-Y) and (B-Y) to be in the range of
  77.  * -0.5..0.5 volt), we will obtain:
  78.  *      Cr = 0.5/0.701 (R-Y), and
  79.  *      Cb = 0.5/0.886 (B-Y).
  80.  * Finally, the quantized versions of Y,Cr,and Cb are defined as:
  81.  *      Y'  = 219 Y + 16,
  82.  *      Cr' = 224 Cr + 128, and
  83.  *      Cb' = 224 Cb + 128.
  84.  * For convenience, we will use the following names for these constants
  85.  * (here and below: V = Cr, and U = Cb):
  86.  */
  87. #define CCIR601_YRCOEF  0.299
  88. #define CCIR601_YGCOEF  0.587
  89. #define CCIR601_YBCOEF  0.114
  90. #define CCIR601_YMAX    219
  91. #define CCIR601_YMED    ((double)CCIR601_YMAX/2.)
  92. #define CCIR601_YOFFSET 16
  93. #define CCIR601_VMAX    224
  94. #define CCIR601_VOFFSET 128
  95. #define CCIR601_UMAX    224
  96. #define CCIR601_UOFFSET 128
  97. /*
  98.  * Also, we typically will deal with quantized R'G'B' signal, represented
  99.  * by 8-bit quantities for R', G' and B' components:
  100.  */
  101. #define RGB_MAX ((1U << 8) - 1)
  102. /*
  103.  * Forward R'G'B'->Y'Cr'Cb' conversion:
  104.  *  a) calculate Y":
  105.  *      Y" = 0.299 R' + 0.587 G' + 0.114 B'; => 3 muls/lookups
  106.  *  b) calculate Y',Cr',Cb' values:
  107.  *      Y'  = 219/255 Y" + 16;     => 1 mul/lookup
  108.  *      Cr' = 224/255 * 0.5/0.701 (R'-Y") + 128; => 1 mul/lookup
  109.  *      Cb' = 224/255 * 0.5/0.886 (B'-Y") + 128; => 1 mul/lookup
  110.  */
  111. #define YSCALE  ((double)CCIR601_YMAX/RGB_MAX)
  112. #define VSCALE  ((double)CCIR601_VMAX/RGB_MAX * 0.5/(1.-CCIR601_YRCOEF))
  113. #define USCALE  ((double)CCIR601_UMAX/RGB_MAX * 0.5/(1.-CCIR601_YBCOEF))
  114. #define YMAX    (RGB_MAX + 3)       /* include max. rounding error */
  115. #define VMAX    (int)((double)(1.-CCIR601_YRCOEF) * RGB_MAX + 1)
  116. #define VMIN    VMAX
  117. #define UMAX    (int)((double)(1.-CCIR601_YBCOEF) * RGB_MAX + 1)
  118. #define UMIN    UMAX
  119. /* R'G'B' -> Y'Cr'Cb' conversion tables: */
  120. YUV_EXTERN int yrtab [RGB_MAX+1], ygtab [RGB_MAX+1], ybtab [RGB_MAX+1];
  121. YUV_EXTERN int yytab [YMAX+1], vrytab [VMIN+VMAX+1], ubytab [UMIN+UMAX+1];
  122. /*
  123.  * Backward Y'Cr'Cb'->R'G'B' conversion:
  124.  *  a) calculate Y":
  125.  *      Y"  = 1/(219/255) (Y'-16);     => 1 mul/lookup
  126.  *  b) calculate R'B':
  127.  *      R'  = Y" + 1/(224/255 * 0.5/0.701) (Cr'-128); => 1 mul/lookup
  128.  *      B'  = Y" + 1/(224/255 * 0.5/0.886) (Cb'-128);  => 1 mul/lookup
  129.  *  c) calculate G':
  130.  *      G'  = 1/0.587 (Y" - 0.299 R' - 0.114 B') =
  131.  *          = Y" - 0.299/0.587/(224/255 * 0.5/0.701) (Cr'-128)
  132.  *               - 0.114/0.587/(224/255 * 0.5/0.886) (Cb'-128); => 2 muls/luts
  133.  */
  134. #define YCOEF   (1/YSCALE)
  135. #define RVCOEF  (1/VSCALE)
  136. #define GVCOEF  (-CCIR601_YRCOEF/CCIR601_YGCOEF/VSCALE)
  137. #define GUCOEF  (-CCIR601_YBCOEF/CCIR601_YGCOEF/USCALE)
  138. #define BUCOEF  (1/USCALE)
  139. /* Y'Cr'Cb'->R'G'B' conversion tables: */
  140. YUV_EXTERN int ytab  [RGB_MAX+1], rvtab [RGB_MAX+1], gvtab [RGB_MAX+1];
  141. YUV_EXTERN int gutab [RGB_MAX+1], butab [RGB_MAX+1];
  142. YUV_EXTERN int rutab [RGB_MAX+1], bvtab [RGB_MAX+1]; /* alpha != 0 */
  143. /*
  144.  * Color adjustments.
  145.  *  a) hue: in NTSC YUV color space, the hue adjustment is equivalent
  146.  *    to the UV axes rotation:
  147.  *      V' = V cos(alpha) - U sin(alpha);
  148.  *      U' = V sin(alpha) + U cos(alpha);
  149.  *    where:
  150.  *      V = (R-Y)/1.14;
  151.  *      U = (B-Y)/2.03;
  152.  *    In YCrCb color space, this will be equivalent to:
  153.  *      Cr' - 128 = (Cr - 128) cos(alpha) - zeta (Cb - 128) sin(alpha));.
  154.  *      Cb' - 128 = xi (Cr - 128) sin(alpha) + (Cb - 128) cos(alpha);
  155.  *    where:
  156.  *      xi   = (1./(0.5/0.701)/1.14)/(1./(0.5/0.886)/2.03);
  157.  *      zeta = 1/xi;
  158.  *  b) saturation:
  159.  *      Cr' - 128 = beta (Cr - 128);
  160.  *      Cb' - 128 = beta (Cb - 128);
  161.  *  c) brightness:
  162.  *      Y' - 16 = gamma (Y - 16);
  163.  *      Cr' - 128 = gamma (Cr - 128);
  164.  *      Cb' - 128 = gamma (Cb - 128);
  165.  *  d) contrast:
  166.  *      Y' - 16 = lambda + kappa (Y - 16);
  167.  *  e) all together:
  168.  *      Y' - 16   = gamma (lambda + kappa (Y - 16));
  169.  *      Cr' - 128 = gamma beta ((Cr - 128) cos(alpha) - zeta (Cb - 128) sin(alpha));
  170.  *      Cb' - 128 = gamma beta (xi (Cr - 128) sin(alpha) + (Cb - 128) cos(alpha));
  171.  */
  172. #define XI      (((1.-CCIR601_YRCOEF)/0.5/1.14)/((1.-CCIR601_YBCOEF)/0.5/2.03))
  173. #define ZETA    (1./XI)
  174. /* empirically choosen limits for color adjustments: */
  175. #define ALPHA_MAX   (M_PI*3/4)
  176. #define ALPHA_MED   0.              /* hue */
  177. #define ALPHA_MIN   (-M_PI*3/4)
  178. #define BETA_MAX    M_SQRT2
  179. #define BETA_MED    1.              /* saturation */
  180. #define BETA_MIN    (M_SQRT2/4)
  181. #define GAMMA_MAX   M_SQRT2
  182. #define GAMMA_MED   1.              /* brightness */
  183. #define GAMMA_MIN   0.5
  184. #define KAPPA_MIN   0.5
  185. #define KAPPA_MED   1.              /* contrast */
  186. #define KAPPA_MAX   2.
  187. #define LAMBDA(kappa)   (CCIR601_YMED * (1. - kappa))
  188. /* indicators of current color adjustment coefficients: */
  189. YUV_EXTERN int is_alpha, is_beta, is_gamma, is_kappa;
  190. /* Y'Cr'Cb'->Y'Cr'Cb' conversion tables: */
  191. YUV_EXTERN int _yytab [RGB_MAX+1], _uutab [RGB_MAX+1], _vvtab [RGB_MAX+1];
  192. YUV_EXTERN int _uvtab [RGB_MAX+1], _vutab [RGB_MAX+1]; /* alpha != 0: */
  193. /* chroma resampling mode: */
  194. YUV_EXTERN int chroma_resampling_mode;
  195. #ifdef __cplusplus
  196. }
  197. #endif
  198. #endif /* __YUV_H__ */