pximgdec.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. #ifndef PXIMGDEC_H
  36. #define PXIMGDEC_H
  37. #define IMAGE_DECODER_FREQUENCY_LOW     0
  38. #define IMAGE_DECODER_FREQUENCY_MEDIUM  1
  39. #define IMAGE_DECODER_FREQUENCY_HIGH    2
  40. #define IMAGE_DECODER_COLOR_RGB24       0
  41. #define IMAGE_DECODER_COLOR_BGR24       1
  42. #define IMAGE_DECODER_COLOR_BGRx32      2
  43. #define IMAGE_DECODER_COLOR_xRGB32      3
  44. #define IMAGE_DECODER_COLOR_RGB555      4
  45. #define IMAGE_DECODER_COLOR_RGB565      5
  46. /****************************************************************************
  47.  *
  48.  *  Typical Usage of IHXImageDecoder
  49.  *
  50.  *  Assume: a) We have an image file in a single IHXBuffer.
  51.  *          b) The image in the file has F frames, labelled frame 0 through
  52.  *             frame F-1. Each of the frames could have different dimensions.
  53.  *
  54.  *  1. Call InitDecode() to pass the file IHXBuffer to the decoder.
  55.  *     You get back a session handle which you will use to refer to
  56.  *     this image in all subsequent calls.
  57.  *  2. Call GetImageInfo() to find out the number of frames F.
  58.  *  3. Call GetFrameInfo() F times (with ulFrameNum going from 0 to F-1)
  59.  *  4. Allocate F output buffers, each of the appropriate size.
  60.  *  4. Call SetDecodeParameters() F times, passing in each of the buffers
  61.  *  5. Call Decompress() over and over until rulPercentDone == 100. If you
  62.  *     want to only have to make one call to Decompress(), set ulReturnFrequency
  63.  *     in SetDecodeParameters() to IMAGE_DECODE_FREQUENCY_LOW.
  64.  *  6. Call FinishDecompress().
  65.  *
  66.  ****************************************************************************/
  67. typedef _INTERFACE IHXImageDecoder IHXImageDecoder;
  68. /****************************************************************************
  69.  *
  70.  *  Interface: IHXImageDecoder
  71.  *
  72.  *  Purpose:   General interface for decoding different image formats
  73.  *
  74.  *  IID_IHXImageDecoder: {27D18D40-1195-423e-B914-6FD216D57846}
  75.  *
  76.  ****************************************************************************/
  77. DEFINE_GUID(IID_IHXImageDecoder, 0x27d18d40, 0x1195, 0x423e, 0xb9, 0x14,
  78.             0x6f, 0xd2, 0x16, 0xd5, 0x78, 0x46);
  79. #undef  INTERFACE
  80. #define INTERFACE IHXImageDecoder
  81. DECLARE_INTERFACE_(IHXImageDecoder, IUnknown)
  82. {
  83.     /*
  84.      * IUnknown methods
  85.      */
  86.     STDMETHOD(QueryInterface)  (THIS_ REFIID riid, void **ppvObj) PURE;
  87.     STDMETHOD_(UINT32,AddRef)  (THIS) PURE;
  88.     STDMETHOD_(UINT32,Release) (THIS) PURE;
  89.     /*
  90.      * IHXImageDecoder Methods
  91.      */
  92.     /************************************************************************
  93.      *  Method:
  94.      *      IHXImageDecoder::ValidInputData()
  95.      *  Purpose:
  96.      *      Determines whether the input buffer is an image format 
  97.      *      this codec can decode.
  98.      */
  99.     STDMETHOD_(BOOL,ValidInputData) (THIS_ IHXBuffer* pBuffer) PURE;
  100.     /************************************************************************
  101.      *  Method:
  102.      *      IHXImageDecoder::InitDecode()
  103.      *  Purpose:
  104.      *      This method intializes the decoder. The IHXBuffer containing
  105.      *      the entire image file is passed in, and a session handle is
  106.      *      returned. This session handle should be used for all successive
  107.      *      calls regarding this image file.
  108.      */
  109.     STDMETHOD(InitDecode) (THIS_ IHXBuffer* pBuffer, REF(UINT32) rulSessionHandle) PURE;
  110.     /************************************************************************
  111.      *  Method:
  112.      *      IHXImageDecoder::GetImageInfo()
  113.      *  Purpose:
  114.      *      This method returns information about the image file. Special
  115.      *      image-level, format-specific information may be returned in
  116.      *      the rpImageInfo IHXValues.
  117.      */
  118.     STDMETHOD(GetImageInfo) (THIS_ UINT32           ulSessionHandle,
  119.                                    REF(UINT32)      rulImageWidth,
  120.                                    REF(UINT32)      rulImageHeight,
  121.                                    REF(UINT32)      rulNumFrames,
  122.                                    REF(IHXValues*) rpImageInfo) PURE;
  123.     /************************************************************************
  124.      *  Method:
  125.      *      IHXImageDecoder::GetFrameInfo()
  126.      *  Purpose:
  127.      *      This method returns information about each frame in a
  128.      *      multi-frame image. Special frame-level, codee-specific information
  129.      *      may be returned in the rpFrameInfo IHXValues.
  130.      */
  131.     STDMETHOD(GetFrameInfo) (THIS_ UINT32           ulSessionHandle,
  132.                                    UINT32           ulFrameNum,
  133.                                    REF(UINT32)      rulFrameWidth,
  134.                                    REF(UINT32)      rulFrameHeight,
  135.                                    REF(IHXValues*) rpFrameInfo) PURE;
  136.     /************************************************************************
  137.      *  Method:
  138.      *      IHXImageDecoder::SetDecodeParameters()
  139.      *  Purpose:
  140.      *      This methods sets the decompression parameters, such as the
  141.      *      output width and height. It also sets the output buffer and
  142.      *      gives the color and pixel format to which the image should be
  143.      *      decoded. Additional codec-specific decompression parameters
  144.      *      can be set in pMoreParam.
  145.      */
  146.     STDMETHOD(SetDecodeParameters) (THIS_ UINT32      ulSessionHandle,
  147.                                           UINT32      ulFrameNum,
  148.                                           BYTE*       pOutputBuffer,
  149.                                           UINT32      ulWidth,
  150.                                           UINT32      ulHeight,
  151.                                           UINT32      ulRowStride,
  152.                                           UINT32      ulBitsPerPixel,
  153.                                           UINT32      ulColorFormat,
  154.                                           BOOL        bRowsInverted,
  155.                                           UINT32      ulReturnFrequency,
  156.                                           IHXValues* pMoreParam) PURE;
  157.     /************************************************************************
  158.      *  Method:
  159.      *      IHXImageDecoder::Decompress()
  160.      *  Purpose:
  161.      *      This method actually decodes the compressed data in pBuffer into
  162.      *      the appropriate output buffer. 
  163.      */
  164.     STDMETHOD(Decompress) (THIS_ UINT32      ulSessionHandle,
  165.                                  REF(UINT32) rulPercentDone) PURE;
  166.     /************************************************************************
  167.      *  Method:
  168.      *      IHXImageDecoder::FinishDecompress()
  169.      *  Purpose:
  170.      *      This method informs the codec that the caller is finished
  171.      *      with this decompression session and the codec can release
  172.      *      any resources allocated for this session. The codec should
  173.      *      be prepared to accept FinishDecompress() at any time after
  174.      *      GetHeaderInfo().
  175.      */
  176.     STDMETHOD(FinishDecompress) (THIS_ UINT32 ulSessionHandle) PURE;
  177. };
  178. typedef struct HXEXPORT_CLASS _OutputImageFrame
  179. {
  180.     IHXBuffer* m_pImageBuffer;
  181.     UINT32      m_ulWidth;
  182.     UINT32      m_ulHeight;
  183. }
  184. OutputImageFrame;
  185. /****************************************************************************
  186.  *
  187.  *  Interface: IHXSimpleImageDecoder
  188.  *
  189.  *  Purpose:   Simplest possible interface for decoding different image formats
  190.  *
  191.  *  IID_IHXSimpleImageDecoder: {8915188F-76A4-487f-A1F6-F9D5B93A9EB6}
  192.  *
  193.  ****************************************************************************/
  194. DEFINE_GUID(IID_IHXSimpleImageDecoder, 0x8915188f, 0x76a4, 0x487f, 0xa1, 0xf6,
  195.             0xf9, 0xd5, 0xb9, 0x3a, 0x9e, 0xb6);
  196. #undef  INTERFACE
  197. #define INTERFACE IHXSimpleImageDecoder
  198. DECLARE_INTERFACE_(IHXSimpleImageDecoder, IUnknown)
  199. {
  200.     /*
  201.      * IUnknown methods
  202.      */
  203.     STDMETHOD(QueryInterface)  (THIS_ REFIID riid, void **ppvObj) PURE;
  204.     STDMETHOD_(UINT32,AddRef)  (THIS) PURE;
  205.     STDMETHOD_(UINT32,Release) (THIS) PURE;
  206.     /*
  207.      * IHXSimpleImageDecoder Methods
  208.      */
  209.     /************************************************************************
  210.      *  Method:
  211.      *      IHXSimpleImageDecoder::ValidInputData()
  212.      *  Purpose:
  213.      *      Determines whether the input buffer is an image format 
  214.      *      this codec can decode.
  215.      */
  216.     STDMETHOD_(BOOL,ValidInputData) (THIS_ IHXBuffer* pBuffer) PURE;
  217.     /************************************************************************
  218.      *  Method:
  219.      *      IHXSimpleImageDecoder::SetOutputBufferFormat()
  220.      *  Purpose:
  221.      *      This methods sets the preferences for the depth, color format,
  222.      *      and row inversion for the output buffer. These preferences
  223.      *      can be set once and will remain set between calls to Decode().
  224.      */
  225.     STDMETHOD(SetOutputBufferFormat) (THIS_ UINT32      ulBitsPerPixel,
  226.                                             UINT32      ulColorFormat,
  227.                                             BOOL        bRowsInverted) PURE;
  228.     /************************************************************************
  229.      *  Method:
  230.      *      IHXSimpleImageDecoder::Decode()
  231.      *  Purpose:
  232.      *      This method provides one-step decoding.
  233.      */
  234.     STDMETHOD(Decode) (THIS_ IHXBuffer*            pFileBuffer,
  235.                              REF(UINT32)            rulNumFrames,
  236.                              REF(OutputImageFrame*) rpFrame) PURE;
  237. };
  238. #endif