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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: colorcvt.h,v 1.1.1.1.50.1 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 __COLORCVT_H__
  50. #define __COLORCVT_H__  1
  51. #ifdef __cplusplus
  52. extern "C" {
  53. #endif
  54. /*
  55.  * Returns current state of "from/to I420" converters.
  56.  * Use:
  57.  *  void GetSrcI420Colors (float *brightness, float *contrast, float *saturation, float *hue);
  58.  * Output:
  59.  *  brightness - brightness adjustment [-1,1], 0 - default;
  60.  *  contrast   - contrast adjustment   [-1,1], 0 - default;
  61.  *  saturation - saturation adjustment [-1,1], 0 - default;
  62.  *  hue        - hue adjustment        [-1,1], 0 - default;
  63.  * Returns:
  64.  *  none.
  65.  */
  66. void GetSrcI420Colors (float *brightness, float *contrast, float *saturation, float *hue);
  67. /*
  68.  * Initializes "from/to I420" converters.
  69.  * Use:
  70.  *  void SetSrcI420Colors (float Brightness, float Contrast, float Saturation, float Hue);
  71.  *  void SetDestI420Colors (float Brightness, float Contrast, float Saturation, float Hue);
  72.  * Input:
  73.  *  Brightness - brightness adjustment [-1,1], 0 - default;
  74.  *  Contrast   - contrast adjustment   [-1,1], 0 - default;
  75.  *  Saturation - saturation adjustment [-1,1], 0 - default;
  76.  *  Hue        - hue adjustment        [-1,1], 0 - default;
  77.  * Returns:
  78.  *  none.
  79.  */
  80. void SetSrcI420Colors (float Brightness, float Contrast, float Saturation, float Hue);
  81. void SetDestI420Colors (float Brightness, float Contrast, float Saturation, float Hue);
  82. /*
  83.  * Suggest palettes to use for 8-bit RGB formats.
  84.  * Use:
  85.  *  int SuggestSrcRGB8Palette (int nColors, unsigned long *lpRGBVals);
  86.  *  int SuggestDestRGB8Palette (int nColors, unsigned long *lpRGBVals);
  87.  * Input:
  88.  *  nColors - the number of existing colors in palette
  89.  *  lpRGBVals - RGB values for each palette entry
  90.  *  lpIndices - pixel values (palette indices)
  91.  * Returns:
  92.  *  >0, the total number of colors to be used, if success
  93.  *  -1, if error
  94.  */
  95. int SuggestSrcRGB8Palette (int nColors, unsigned int *lpRGBVals);
  96. int SuggestDestRGB8Palette (int nColors, unsigned int *lpRGBVals);
  97. /*
  98.  * Set palettes to use for 8-bit RGB formats.
  99.  * Use:
  100.  *  int SetSrcRGB8Palette (int nColors, unsigned int *lpRGBVals, int *lpIndices);
  101.  *  int SetDestRGB8Palette (int nColors, unsigned int *lpRGBVals, int *lpIndices);
  102.  * Input:
  103.  *  nColors - the number of colors in palette
  104.  *  lpRGBVals - RGB values for each palette entry
  105.  *  lpIndices - pixel values (palette indices)
  106.  * Returns:
  107.  *  >0, the total number of colors set, if success
  108.  *  -1, if error
  109.  */
  110. int SetSrcRGB8Palette (int nColors, unsigned int *lpRGBVals, int *lpIndices);
  111. int SetDestRGB8Palette (int nColors, unsigned int *lpRGBVals, int *lpIndices);
  112. /*
  113.  * Format-conversion routines.
  114.  * Use:
  115.  *  int XXXXtoYYYY (unsigned char *dest_ptr, int dest_width, int dest_height,
  116.  *      int dest_pitch, int dest_x, int dest_y, int dest_dx, int dest_dy,
  117.  *      unsigned char *src_ptr, int src_width, int src_height, int src_pitch,
  118.  *      int src_x, int src_y, int src_dx, int src_dy);
  119.  * Input:
  120.  *  dest_ptr - pointer to a destination buffer
  121.  *  dest_width, dest_height - width/height of the destination image (pixels)
  122.  *  dest_pitch - pitch of the dest. buffer (in bytes; <0 - if bottom up image)
  123.  *  dest_x, dest_y, dest_dx, dest_dy - destination rectangle (pixels)
  124.  *  src_ptr - pointer to an input image
  125.  *  src_width, src_height - width/height of the input image (pixels)
  126.  *  src_pitch - pitch of the source buffer (in bytes; <0 - if bottom up image)
  127.  *  src_x, src_y, src_dx, src_dy - source rectangle (pixels)
  128.  * Returns:
  129.  *  0 - if success; -1 if failure.
  130.  * Notes:
  131.  *  a) In all cases, pointers to the source and destination buffers must be
  132.  *     DWORD aligned, and both pitch parameters must be multiple of 4!!!
  133.  *  b) Converters that deal with YUV 4:2:2, or 4:2:0 formats may also require
  134.  *     rectangle parameters (x,y,dx,dy) to be multiple of 2. Failure to provide
  135.  *     aligned rectangles will result in partially converted image.
  136.  *  c) Currently only scale factors of 1:1 and 2:1 are supported; if the rates
  137.  *     dest_dx/src_dx & dest_dy/src_dy are neither 1, or 2, the converters
  138.  *     will fail.
  139.  */
  140. /* "from I420" converters: */
  141. int I420toI420     (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  142. int I420toYV12     (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  143. int I420toYUY2     (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  144. int I420toUYVY     (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  145. int I420toRGB32    (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  146. int I420toRGB24    (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  147. int I420toRGB565   (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  148. int I420toRGB555   (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  149. int I420toRGB8     (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  150. /* "to I420" converters: */
  151. int   YV12toI420   (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  152. int   YVU9toI420   (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  153. int   YUY2toI420   (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  154. int   UYVYtoI420   (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  155. int  RGB32toI420   (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  156. int  RGB24toI420   (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  157. int RGB565toI420   (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  158. int RGB555toI420   (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  159. int   RGB8toI420   (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  160. /* to BGR32 converters: */
  161. int   I420toBGR32  (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  162. int  RGB32toBGR32  (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  163. int  RGB24toBGR32  (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  164. int RGB565toBGR32  (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  165. int RGB555toBGR32  (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  166. int   RGB8toBGR32  (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  167. /* all possible "RGBx to RGBy" converters: */
  168. int RGB32toRGB32   (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  169. int RGB32toRGB24   (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  170. int RGB32toRGB565  (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  171. int RGB32toRGB555  (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  172. int RGB32toRGB8    (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  173. int RGB24toRGB32   (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  174. int RGB24toRGB24   (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  175. int RGB24toRGB565  (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  176. int RGB24toRGB555  (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  177. int RGB24toRGB8    (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  178. int RGB565toRGB32  (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  179. int RGB565toRGB24  (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  180. int RGB565toRGB565 (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  181. int RGB565toRGB555 (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  182. int RGB565toRGB8   (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  183. int RGB555toRGB32  (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  184. int RGB555toRGB24  (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  185. int RGB555toRGB565 (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  186. int RGB555toRGB555 (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  187. int RGB555toRGB8   (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  188. int RGB8toRGB32    (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  189. int RGB8toRGB24    (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  190. int RGB8toRGB565   (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  191. int RGB8toRGB555   (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  192. int RGB8toRGB8     (unsigned char *, int, int, int, int, int, int, int, unsigned char *, int, int, int, int, int, int, int);
  193. /*
  194.  * Alternative I420->RGB converters:
  195.  * Use:
  196.  *  void oldI420toRGBXXX (unsigned char *ysrc, unsigned char *usrc,
  197.  *          unsigned char *vsrc, int pitchSrc, unsigned char *dst,
  198.  *          int width, int height, int pitchDst);
  199.  * Input:
  200.  *  ysrc, usrc, vsrc - pointers to Y, Cr, and Cb components of the frame
  201.  *  pitchSrc - pitch of the input frame (luminance)
  202.  *  dst - pointer to an output buffer
  203.  *  width, height - the size of frame to convert
  204.  *  pitchDst - pitch of the output buffer (in RGB pixels!!!)
  205.  * Returns:
  206.  *  none.
  207.  */
  208. void oldI420toRGB32  (unsigned char *, unsigned char *, unsigned char *, int, unsigned char *, int, int, int);
  209. void oldI420toRGB24  (unsigned char *, unsigned char *, unsigned char *, int, unsigned char *, int, int, int);
  210. void oldI420toRGB565 (unsigned char *, unsigned char *, unsigned char *, int, unsigned char *, int, int, int);
  211. void oldI420toRGB555 (unsigned char *, unsigned char *, unsigned char *, int, unsigned char *, int, int, int);
  212. void oldI420toRGB32x2  (unsigned char *, unsigned char *, unsigned char *, int, unsigned char *, int, int, int);
  213. void oldI420toRGB24x2  (unsigned char *, unsigned char *, unsigned char *, int, unsigned char *, int, int, int);
  214. void oldI420toRGB565x2 (unsigned char *, unsigned char *, unsigned char *, int, unsigned char *, int, int, int);
  215. void oldI420toRGB555x2 (unsigned char *, unsigned char *, unsigned char *, int, unsigned char *, int, int, int);
  216. #ifdef __cplusplus
  217. }
  218. #endif
  219. #endif /* __COLORCVT_H__ */