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

Symbian

开发平台:

Visual C++

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