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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: coloracc.h,v 1.4.4.1 2004/07/09 01:59:52 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 _COLORACC_H_
  50. #define _COLORACC_H_
  51. #include "hxcolor.h"
  52. #ifdef _WINDOWS
  53. #include "hxcore.h"
  54. #endif
  55. // Forward declarations
  56. class DLLAccess;
  57. const UINT32 MAX_DLL_NAME_LEN = 256;
  58. typedef HX_RESULT (HXEXPORT_PTR FPGETHXCOLORGUID)   (UCHAR* pGUID);
  59. typedef void (HXEXPORT_PTR FPINITCOLORCONVERTER)    (void);
  60. typedef void (HXEXPORT_PTR FPSETCOLORADJUSTMENTS)   (float Brightness,
  61.     float Contrast,
  62.     float Saturation,
  63.     float Hue);
  64. #ifdef _WINDOWS
  65. typedef void (HXEXPORT_PTR FPINITCOLORCONVERTER2)   (IUnknown* pContext);
  66. typedef void (HXEXPORT_PTR FPSETCOLORADJUSTMENTS2)  (IUnknown* pContext,
  67.                                                     float Brightness,
  68.     float Contrast,
  69.     float Saturation,
  70.     float Hue);
  71. typedef void (HXEXPORT_PTR FPUPGRADECOLORCONVERTER) (IUnknown* pContext, IUnknown* pPlayer, INT32 cidIn, INT32 cidOut);
  72. #endif
  73. typedef void (HXEXPORT_PTR FPGETCOLORADJUSTMENTS)   (float *Brightness,
  74.     float *Contrast,
  75.     float *Saturation,
  76.     float *Hue);
  77. typedef int (HXEXPORT_PTR FPSUGGESTRGB8PALETTE) (int nColors, UINT32 *lpRGBVals);
  78. typedef int (HXEXPORT_PTR FPSETRGB8PALETTE) (int nColors, UINT32 *lpRGBVals, int *lpIndices);
  79. typedef void (HXEXPORT_PTR FPSETSHARPNESSADJUSTMENTS)   (float Sharpness, INT16 nExpand);
  80. typedef void (HXEXPORT_PTR FPGETSHARPNESSADJUSTMENTS)   (float* Sharpness, INT16* nExpand);
  81. typedef void (HXEXPORT_PTR FPCONVERTRGBTOYUV)     (UCHAR* pInput,
  82.     UCHAR* pOutput,
  83.     INT32  nWidth,
  84.     INT32  nHeight,
  85.     BOOL   bBGR);
  86. typedef void (HXEXPORT_PTR FPCONVERTYUVTORGB)     (UCHAR* ySrc,
  87.     UCHAR* uSrc,
  88.     UCHAR* vSrc,
  89.     INT32  nPitchSrc,
  90.     UCHAR* Dst,
  91.     INT32  nWidth,
  92.     INT32  nHeight,
  93.     INT32  nPitchDst,
  94.     INT16  nFormat,
  95.     INT16  nExpand);
  96. typedef int (HXEXPORT_PTR FPI420ANDYUVA)
  97.       (unsigned char *src1_ptr, int src1_pels,   int src1_lines,  int src1_pitch,
  98.        int src1_startx, int src1_starty,
  99.        unsigned char *src2_ptr, int src2_pels,   int src2_lines,  int src2_pitch,
  100.        int src2_startx, int src2_starty,
  101.        unsigned char *dest_ptr, int dest_pels,   int dest_lines,  int dest_pitch,
  102.        int dest_startx, int dest_starty,
  103.        int width,  int height,  int color_format);
  104. typedef int (HXEXPORT_PTR FPI420ANDI420TOI420)
  105.       (unsigned char *src1_ptr, int src1_pels,   int src1_lines,  int src1_pitch,
  106.        int src1_startx, int src1_starty,
  107.        unsigned char *src2_ptr, int src2_pels,   int src2_lines,  int src2_pitch,
  108.        int src2_startx, int src2_starty,
  109.        unsigned char *dest_ptr, int dest_pels,   int dest_lines,  int dest_pitch,
  110.        int dest_startx, int dest_starty,
  111.        int width,  int height,  int output_format);
  112. typedef void (HXEXPORT_PTR FPENHANCE) (UCHAR* ysrc, INT32 nHeight, INT32 nWidth, INT32 nPitchSrc, float Sharpness);
  113. typedef void (HXEXPORT_PTR FPENHANCEUNIFORM) (UCHAR* ysrc, INT32 nHeight, INT32 nWidth, INT32 nPitchSrc, float Sharpness);
  114. typedef void (HXEXPORT_PTR FPCONVERTRGB24TOXRGB)    (UCHAR* pSrc,
  115.     UCHAR* pDest,
  116.     ULONG32 srcSize,
  117.     ULONG32 destSize,
  118.     INT32 nWidth,
  119.     INT32 nHeight);
  120. typedef LPHXCOLORCONVERTER (HXEXPORT_PTR FPGETCOLORCONVERTER)
  121.     (INT32 cidIn, INT32 cidOut);
  122. typedef LPHXCOLORCONVERTER2 (HXEXPORT_PTR FPGETCOLORCONVERTERx)
  123.     (INT32 cidIn, INT32 cidOut);
  124. #ifdef _WINDOWS
  125. typedef LPHXCOLORCONVERTER (HXEXPORT_PTR FPGETCOLORCONVERTER2)
  126.     (IUnknown* pContext, INT32 cidIn, INT32 cidOut);
  127. typedef LPHXCOLORCONVERTER2 (HXEXPORT_PTR FPGETCOLORCONVERTER2x)
  128.     (IUnknown* pContext, INT32 cidIn, INT32 cidOut);
  129. #endif
  130. typedef BOOL (HXEXPORT_PTR FPSCANCOMPATIBLECOLORFORMATS)
  131. (INT32 cidIn, INT32 cidOutMask, void *pParam,
  132.     BOOL (*pfnTryIt) (void *pParam,
  133.     INT32 cidOut, LPHXCOLORCONVERTER pfnCC));
  134. typedef BOOL (HXEXPORT_PTR FPSCANALLCOMPATIBLECOLORFORMATS)
  135. (INT32 cidIn, void *pParam,
  136.     BOOL (*pfnTryIt) (void *pParam,
  137.     INT32 cidOut, LPHXCOLORCONVERTER pfnCC));
  138. class ColorFuncAccess
  139. {
  140. public:
  141.     ColorFuncAccess(IUnknown* pContext);
  142.     ~ColorFuncAccess();
  143.     HX_RESULT hStatus;
  144.     HX_RESULT GetHXColorGUID (UCHAR* pGUID);
  145.     void InitColorConverter ();
  146.     void SetColorAdjustments    (float Brightness, float Contrast,
  147. float Saturation, float Hue);
  148.     void GetColorAdjustments    (float *Brightness, float *Contrast,
  149. float *Saturation, float *Hue);
  150.     int SuggestRGB8Palette (int nColors, UINT32 *lpRGBVals);
  151.     int SetRGB8Palette (int nColors, UINT32 *lpRGBVals, int *lpIndices);
  152.     void SetSharpnessAdjustments    (float Sharpness, INT16 nExpand);
  153.     void GetSharpnessAdjustments    (float* Sharpness, INT16* nExpand);
  154.     void ConvertRGBtoYUV (UCHAR* pInput, UCHAR* pOutput,
  155. INT32 nWidth, INT32 nHeight, BOOL bBGR);
  156.     void ConvertYUVtoRGB (UCHAR* ySrc, UCHAR* uSrc, UCHAR* vSrc,
  157. INT32 nPitchSrc, UCHAR* Dst, INT32 nWidth,
  158. INT32 nHeight, INT32 nPitchDst, INT16 nFormat,
  159. INT16 nExpand);
  160.     void Enhance(UCHAR* ysrc, INT32 nHeight, INT32 nWidth, INT32 nPitchSrc, float Sharpness);
  161.     void EnhanceUniform(UCHAR* ysrc, INT32 nHeight, INT32 nWidth, INT32 nPitchSrc, float Sharpness);
  162.     void ConvertRGB24toXRGB( UCHAR* pSrc, UCHAR* pDest,
  163.             ULONG32 srcSize, ULONG32 destSize, INT32 nWidth, INT32 nHeight);
  164.     BOOL CheckColorConverter (INT32 cidIn, INT32 cidOut);
  165.     BOOL CheckColorConverter2 (INT32 cidIn, INT32 cidOut);
  166.     virtual
  167.     int  ColorConvert(INT32 cidOut,
  168.                       unsigned char *dest_ptr, int dest_width, int dest_height,
  169.                       int dest_pitch, int dest_x, int dest_y, int dest_dx, int dest_dy,
  170.                       INT32 cidIn,
  171.                       unsigned char *src_ptr, int src_width, int src_height, int src_pitch,
  172.                       int src_x, int src_y, int src_dx, int src_dy);
  173.     virtual
  174.     int  ColorConvert2(INT32 cidOut,
  175.                        unsigned char *dest_ptr, int dest_width, int dest_height,
  176.                        int dest_pitch, int dest_x, int dest_y, int dest_dx, int dest_dy,
  177.                        INT32 cidIn,
  178.                        unsigned char *pY, unsigned char *pU, unsigned char *pV,
  179.                        int src_width, int src_height, int yPitch, int uPitch, int vPitch,
  180.                        int src_x, int src_y, int src_dx, int src_dy);
  181.     int I420andYUVA(
  182. unsigned char *src1_ptr, int src1_pels,   int src1_lines,  int src1_pitch,
  183.         int src1_startx, int src1_starty,
  184. unsigned char *src2_ptr, int src2_pels,   int src2_lines,  int src2_pitch,
  185.         int src2_startx, int src2_starty,
  186. unsigned char *dest_ptr, int dest_pels,   int dest_lines,  int dest_pitch,
  187.         int dest_startx, int dest_starty,
  188. int width,  int height,  int color_format);
  189.     
  190.     int I420andI420toI420(
  191.         unsigned char *src1_ptr, int src1_pels,   int src1_lines,  int src1_pitch,
  192.         int src1_startx, int src1_starty,
  193. unsigned char *src2_ptr, int src2_pels,   int src2_lines,  int src2_pitch,
  194.         int src2_startx, int src2_starty,
  195. unsigned char *dest_ptr, int dest_pels,   int dest_lines,  int dest_pitch,
  196.         int dest_startx, int dest_starty,
  197. int width,  int height,  int alpha);
  198.     
  199.     
  200.     BOOL ScanCompatibleColorFormats (INT32 cidIn, INT32 cidOutMask, void *pParam,
  201.     BOOL (*pfnTryIt) (void *pParam, INT32 cidOut, LPHXCOLORCONVERTER pfnCC));
  202.     BOOL ScanAllCompatibleColorFormats (INT32 cidIn, void *pParam,
  203.     BOOL (*pfnTryIt) (void *pParam, INT32 cidOut, LPHXCOLORCONVERTER pfnCC));
  204.     virtual void Terminate() {};
  205. #ifdef _WINDOWS
  206.     void SetPlayer(IHXPlayer* pPlayer);
  207. #endif
  208. protected:
  209.     DLLAccess* m_pDllAccess;
  210.     char       m_pDllName[MAX_DLL_NAME_LEN]; /* Flawfinder: ignore */
  211.     IUnknown*  m_pContext;
  212.     FPGETHXCOLORGUID     m_fpGetHXColorGUID;
  213.     FPINITCOLORCONVERTER    m_fpInitColorConverter;
  214.     FPSETCOLORADJUSTMENTS   m_fpSetColorAdjustments;
  215.     FPGETCOLORADJUSTMENTS   m_fpGetColorAdjustments;
  216.     FPSUGGESTRGB8PALETTE    m_SuggestRGB8Palette;
  217.     FPSETRGB8PALETTE        m_SetRGB8Palette;
  218.     FPSETSHARPNESSADJUSTMENTS m_fpSetSharpnessAdjustments;
  219.     FPGETSHARPNESSADJUSTMENTS m_fpGetSharpnessAdjustments;
  220.     FPCONVERTRGBTOYUV     m_fpConvertRGBtoYUV;
  221.     FPI420ANDYUVA           m_fpI420andYUVA;
  222.     FPI420ANDI420TOI420     m_fpI420andI420toI420;
  223.     FPCONVERTYUVTORGB     m_fpConvertYUVtoRGB;
  224.     FPENHANCE               m_fpEnhance;
  225.     FPENHANCEUNIFORM     m_fpEnhanceUniform;
  226.     FPCONVERTRGB24TOXRGB    m_fpConvertRGB24ToXRGB;
  227.     FPSCANCOMPATIBLECOLORFORMATS m_fpScanCompatibleColorFormats;
  228.     FPSCANALLCOMPATIBLECOLORFORMATS m_fpScanAllCompatibleColorFormats;
  229.     FPGETCOLORCONVERTER     m_fpGetColorConverter;
  230.     FPGETCOLORCONVERTERx    m_fpGetColorConverterx;
  231.     BOOL                    m_bLightColorConverter;
  232. #ifdef _WINDOWS
  233.     IHXPlayer*             m_pPlayer;
  234.     FPINITCOLORCONVERTER2   m_fpInitColorConverter2;
  235.     FPGETCOLORCONVERTER2    m_fpGetColorConverter2;
  236.     FPGETCOLORCONVERTER2x   m_fpGetColorConverter2x;
  237.     FPSETCOLORADJUSTMENTS2  m_fpSetColorAdjustments2;
  238.     FPUPGRADECOLORCONVERTER m_fpUpgradeColorConverter;
  239. #endif
  240.     void LoadConversionFunctions();
  241.     void WrongHXColorVersion();
  242.     HX_RESULT SetCodecDir();
  243.     LPHXCOLORCONVERTER GetColorConverter (INT32 cidIn, INT32 cidOut);
  244.     LPHXCOLORCONVERTER2 GetColorConverter2 (INT32 cidIn, INT32 cidOut);
  245. };
  246. #endif // _COLORACC_H_