yuv.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:11k
源码类别:

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. /*
  36.  * yuv.h: constants, prototypes, and macros used by the color
  37.  * conversion routines.  This header should not be included in any
  38.  * files that are not part of the color conversion library.
  39.  */
  40. #ifndef YUV_H_
  41. #define YUV_H_
  42. /* 
  43.  * This constant defines the maximum width of a video frame that will
  44.  * be supported by the color convert routines.  Setting this value to
  45.  * 640 will allow all RealVideo encodes to work..  If you explicitly
  46.  * disallow (and test for) frame widths larger than this value
  47.  * elsewhere in the player, then this value can be set to a smaller
  48.  * value.  The allocated memory is 12 * MAXWIDTH bytes.
  49.  */
  50. /* This was increased to 720 to handle half D1 video. */
  51. #define MAXWIDTH 720
  52. /*******************************************************************
  53.  * Don't change values below this line.
  54.  *******************************************************************/
  55. /* some math. constants: */
  56. #ifndef M_PI
  57. #define M_PI      3.14159265358979323846
  58. #endif
  59. #ifndef M_SQRT2
  60. #define M_SQRT2   1.41421356237309504880
  61. #endif
  62. /* fast rounding to a nearest integer: */
  63. #if _M_IX86
  64. #define INT(a) DoubleToInt(a)
  65. static __inline int DoubleToInt(double a)
  66. {
  67.     int ia;
  68.     __asm   fld     a
  69.     __asm   fistp   ia
  70.     return ia;
  71. }
  72. #else
  73. #define INT(a) ((int) (((a)<0)? ((a)-0.5): ((a)+0.5)))
  74. #endif
  75. extern   int ytab  [], rvtab [], gvtab [];
  76. extern   int gutab [], butab [];
  77. extern   int rutab [], bvtab []; /* alpha != 0 */
  78. /*
  79.  * Bytes-per-pixel, for readability:
  80.  */
  81. #define BPP1    1
  82. #define BPP2    2
  83. #define BPP3    3
  84. #define BPP4    4
  85. /*
  86.  * Clipping & dithering:
  87.  *
  88.  * Note: the CLIPNEG/CLIPPOS numbers are somewhat rounded values
  89.  *  that correspond to current GAMMA_MAX,KAPPA_MAX, and BETA_MAX
  90.  *  parameters. If you are planning to modify any of these, the
  91.  *  ranges of the clip tables shall be adjusted as well.
  92.  */
  93. #define CLIPRNG 256                 /* unclipped range */
  94. #define CLIPNEG (288 * 4)           /* rounded max neg. value */
  95. #define CLIPPOS (288 * 4)           /* rounded max shot over 256 */
  96. #if defined(HELIX_FEATURE_CC_RGB444out)
  97. //These 2 handle all the RGB444 conversions
  98. #define CLIP4 (pcd->clip4+CLIPNEG)       /* offset into clip4 */
  99. #define CLIP8 (pcd->clip8+CLIPNEG)       /* offset into clip8 */
  100. #endif
  101. #if defined(HELIX_FEATURE_CC_RGB565out)            
  102. //These 2 handle all the RGB565 conversions
  103. #define CLIP5 (pcd->clip5+CLIPNEG)       /* offset into clip5 */
  104. #define CLIP6 (pcd->clip6+CLIPNEG)       /* offset into clip6 */
  105. #endif
  106.             
  107. /* 2-level, 2x2 dither noise, added before rounding to 333/555/565.
  108.  * Define NO_DITHER to disable. */
  109. #ifndef NO_DITHER
  110. #define DITH3L  8   /* 16 - 8 */
  111. #define DITH3H  24  /* 16 + 8 */
  112. #define DITH4L  4   /* 8 - 4 */
  113. #define DITH4H  12  /* 8 + 4 */
  114. #define DITH5L  2   /* 4 - 2 */
  115. #define DITH5H  6   /* 4 + 2 */
  116. #define DITH6L  1   /* 2 - 1 */
  117. #define DITH6H  3   /* 2 + 1 */
  118. #else /* disabled */
  119. #define DITH3L  16  /* does (i+16)>>5 for proper rounding */
  120. #define DITH3H  16
  121. #define DITH4L  8   /* does (i+8)>>4 for proper rounding */
  122. #define DITH4H  8
  123. #define DITH5L  4   /* does (i+4)>>3 for proper rounding */
  124. #define DITH5H  4
  125. #define DITH6L  2   /* does (i+2)>>2 for proper rounding */
  126. #define DITH6H  2
  127. #endif
  128. extern int chk_args (unsigned char *, int, int,
  129.      int, int, int, int, int,
  130.      unsigned char *, int, int,
  131.      int, int, int, int, int,
  132.      int *, int *);
  133. /*
  134.  * CCIR Rec. 601-2 definition of YCrCb color space.
  135.  *
  136.  * Given a primary analogue RGB signal (R,G,and B components are in the
  137.  * range of 0..1 volt), the luminance signal is defined as:
  138.  *      Y = 0.299 R + 0.587 G + 0.114 B.
  139.  * Signals of color-defferences, are therefore:
  140.  *      (R-Y) = 0.701 R - 0.587 G - 0.114 B, and
  141.  *      (B-Y) = -0.299 R - 0.587 G + 0.886 B.
  142.  * Using normalization (we want (R-Y) and (B-Y) to be in the range of
  143.  * -0.5..0.5 volt), we will obtain:
  144.  *      Cr = 0.5/0.701 (R-Y), and
  145.  *      Cb = 0.5/0.886 (B-Y).
  146.  * Finally, the quantized versions of Y,Cr,and Cb are defined as:
  147.  *      Y'  = 219 Y + 16,
  148.  *      Cr' = 224 Cr + 128, and
  149.  *      Cb' = 224 Cb + 128.
  150.  *
  151.  * For convenience, we will use the following names for these constants
  152.  * (here and below: V = Cr, and U = Cb):
  153.  */
  154. #define CCIR601_YRCOEF  0.299
  155. #define CCIR601_YGCOEF  0.587
  156. #define CCIR601_YBCOEF  0.114
  157. #define CCIR601_YMAX    219
  158. #define CCIR601_YMED    ((double)CCIR601_YMAX/2.)
  159. #define CCIR601_YOFFSET 16
  160. #define CCIR601_VMAX    224
  161. #define CCIR601_VOFFSET 128
  162. #define CCIR601_UMAX    224
  163. #define CCIR601_UOFFSET 128
  164. /*
  165.  * Also, we typically will deal with quantized R'G'B' signal, represented
  166.  * by 8-bit quantities for R', G' and B' components:
  167.  */
  168. #define RGB_MAX 255
  169. /*
  170.  * Forward R'G'B'->Y'Cr'Cb' conversion:
  171.  *  a) calculate Y":
  172.  *      Y" = 0.299 R' + 0.587 G' + 0.114 B';            => 3 muls/lookups
  173.  *  b) calculate Y',Cr',Cb' values:
  174.  *      Y'  = 219/255 Y" + 16;                          => 1 mul/lookup
  175.  *      Cr' = 224/255 * 0.5/0.701 (R'-Y") + 128;        => 1 mul/lookup
  176.  *      Cb' = 224/255 * 0.5/0.886 (B'-Y") + 128;        => 1 mul/lookup
  177.  */
  178. #define YSCALE  ((double)CCIR601_YMAX/RGB_MAX)
  179. #define VSCALE  ((double)CCIR601_VMAX/RGB_MAX * 0.5/(1.-CCIR601_YRCOEF))
  180. #define USCALE  ((double)CCIR601_UMAX/RGB_MAX * 0.5/(1.-CCIR601_YBCOEF))
  181. #define YMAX    (RGB_MAX + 3)       /* include max. rounding error */
  182. #define VMAX    (int)((double)(1.-CCIR601_YRCOEF) * RGB_MAX + 1)
  183. #define VMIN    VMAX
  184. #define UMAX    (int)((double)(1.-CCIR601_YBCOEF) * RGB_MAX + 1)
  185. #define UMIN    UMAX
  186. /*
  187.  * Backward Y'Cr'Cb'->R'G'B' conversion:
  188.  *  a) calculate Y":
  189.  *      Y"  = 1/(219/255) (Y'-16);                                              => 1 mul/lookup
  190.  *  b) calculate R'B':
  191.  *      R'  = Y" + 1/(224/255 * 0.5/0.701) (Cr'-128);   => 1 mul/lookup
  192.  *      B'  = Y" + 1/(224/255 * 0.5/0.886) (Cb'-128);   => 1 mul/lookup
  193.  *  c) calculate G':
  194.  *      G'  = 1/0.587 (Y" - 0.299 R' - 0.114 B') =
  195.  *          = Y" - 0.299/0.587/(224/255 * 0.5/0.701) (Cr'-128)
  196.  *               - 0.114/0.587/(224/255 * 0.5/0.886) (Cb'-128); => 2 muls/luts
  197.  */
  198. #define YCOEF   (1/YSCALE)
  199. #define RVCOEF  (1/VSCALE)
  200. #define GVCOEF  (-CCIR601_YRCOEF/CCIR601_YGCOEF/VSCALE)
  201. #define GUCOEF  (-CCIR601_YBCOEF/CCIR601_YGCOEF/USCALE)
  202. #define BUCOEF  (1/USCALE)
  203. /*
  204.  * Color adjustments.
  205.  *  a) hue: in NTSC YUV color space, the hue adjustment is equivalent
  206.  *    to the UV axes rotation:
  207.  *      V' = V cos(alpha) - U sin(alpha);
  208.  *      U' = V sin(alpha) + U cos(alpha);
  209.  *    where:
  210.  *      V = (R-Y)/1.14;
  211.  *      U = (B-Y)/2.03;
  212.  *    In YCrCb color space, this will be equivalent to:
  213.  *      Cr' - 128 = (Cr - 128) cos(alpha) - zeta (Cb - 128) sin(alpha));.
  214.  *      Cb' - 128 = xi (Cr - 128) sin(alpha) + (Cb - 128) cos(alpha);
  215.  *    where:
  216.  *      xi   = (1./(0.5/0.701)/1.14)/(1./(0.5/0.886)/2.03);
  217.  *      zeta = 1/xi;
  218.  *  b) saturation:
  219.  *      Cr' - 128 = beta (Cr - 128);
  220.  *      Cb' - 128 = beta (Cb - 128);
  221.  *  c) brightness:
  222.  *      Y' - 16 = gamma (Y - 16);
  223.  *      Cr' - 128 = gamma (Cr - 128);
  224.  *      Cb' - 128 = gamma (Cb - 128);
  225.  *  d) contrast:
  226.  *      Y' - 16 = lambda + kappa (Y - 16);
  227.  *  e) all together:
  228.  *      Y' - 16   = gamma (lambda + kappa (Y - 16));
  229.  *      Cr' - 128 = gamma beta ((Cr - 128) cos(alpha) - zeta (Cb - 128) sin(alpha));
  230.  *      Cb' - 128 = gamma beta (xi (Cr - 128) sin(alpha) + (Cb - 128) cos(alpha));
  231.  */
  232. #define XI      (((1.-CCIR601_YRCOEF)/0.5/1.14)/((1.-CCIR601_YBCOEF)/0.5/2.03))
  233. #define ZETA    (1./XI)
  234. /* empirically choosen limits for color adjustments: */
  235. #define ALPHA_MAX   (M_PI*3/4)
  236. #define ALPHA_MED   0.              /* hue */
  237. #define ALPHA_MIN   (-M_PI*3/4)
  238. #define BETA_MAX    M_SQRT2
  239. #define BETA_MED    1.              /* saturation */
  240. #define BETA_MIN    (M_SQRT2/4)
  241. #define GAMMA_MAX   M_SQRT2
  242. #define GAMMA_MED   1.              /* brightness */
  243. #define GAMMA_MIN   0.5
  244. #define KAPPA_MIN   0.5
  245. #define KAPPA_MED   1.              /* contrast */
  246. #define KAPPA_MAX   2.
  247. #define LAMBDA(kappa)   (CCIR601_YMED * (1. - kappa))
  248. /*
  249.  * color_data_t: This struct contains all variables that need to be
  250.  * persistant across calls the the color conversion routines. These
  251.  * were formerly stored in global values. These needed to be removed
  252.  * due to Symbian dll restrictions.
  253.  */
  254. typedef struct color_data_t_ {
  255.     int color_conversion_tables_inited;
  256.   
  257.     int is_alpha;
  258.     int is_beta;
  259.     int is_gamma;
  260.     int is_kappa;
  261.     float cur_brightness;
  262.     float cur_contrast;
  263.     float cur_saturation;
  264.     float cur_hue; 
  265.     unsigned char linebuf[3 * MAXWIDTH * BPP4];
  266.     /* Y'Cr'Cb'->R'G'B' conversion tables: */
  267.     int ytab  [RGB_MAX+1];
  268.     int rvtab [RGB_MAX+1];
  269.     int gvtab [RGB_MAX+1];
  270.     int gutab [RGB_MAX+1];
  271.     int butab [RGB_MAX+1];
  272.     int rutab [RGB_MAX+1];
  273.     int bvtab [RGB_MAX+1]; /* alpha != 0 */
  274.     /* actual clip tables */
  275. #if defined(HELIX_FEATURE_CC_RGB444out)
  276.     unsigned char clip4 [CLIPNEG+CLIPRNG+CLIPPOS]; /* clip/round to 4 bits */
  277.     unsigned char clip8 [CLIPNEG+CLIPRNG+CLIPPOS]; /* clip to 8 bits */
  278. #endif    
  279. #if defined(HELIX_FEATURE_CC_RGB565out)
  280.     unsigned char clip5 [CLIPNEG+CLIPRNG+CLIPPOS]; /* clip/round to 5 bits */
  281.     unsigned char clip6 [CLIPNEG+CLIPRNG+CLIPPOS]; /* clip/round to 6 bits */
  282. #endif
  283.     
  284. } color_data_t;
  285. void InitColorData(color_data_t* pcd);
  286. #endif /* YUV_H_ */