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

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 PXRNDCOD_H
  36. #define PXRNDCOD_H
  37. /****************************************************************************
  38.  *
  39.  *  Typical Usage of IHXRealPixRendererCodec:
  40.  *
  41.  *  Assume: a) We have an image file which is broken up into N contiguous
  42.  *             IHXBuffers, labelled buffer 0 to buffer N-1.
  43.  *          b) We have already identified the correct codec for our image format
  44.  *             by calling GetRendererCodecInfo() and/or ValidInputData().
  45.  *          c) The image in the file has F frames, labelled frame 0 through
  46.  *             frame F-1
  47.  *
  48.  *  1. Call GetHeaderInfo(), passing in buffer 0
  49.  *  2. Call GetFrameInfo() F times (with ulFrameNum going from 0 to F-1)
  50.  *  3. Allocate F output buffers, each of the appropriate size.
  51.  *  4. Call SetDecompressParam() F times.
  52.  *  5. Call Decompress() N times, passing in buffers 0 through N-1.
  53.  *  6. Call FinishDecompress().
  54.  *
  55.  ****************************************************************************/
  56. typedef _INTERFACE IHXRealPixRendererCodec  IHXRealPixRendererCodec;
  57. typedef _INTERFACE IHXValues  IHXValues;
  58. #define DECOMPRESS_STATUS_INPROGRESS  0
  59. #define DECOMPRESS_STATUS_FINISHED    1
  60. #define DECOMPRESS_STATUS_ABORTED    -1
  61. /****************************************************************************
  62.  *
  63.  *  Interface: IHXRealPixRendererCodec
  64.  *
  65.  *  Purpose:   Interface between RealPix renderer and codec
  66.  *
  67.  *  IID_IHXRealPixRendererCodec: {10552E61-C6F1-11d2-8A4F-28909A000000}
  68.  *
  69.  ****************************************************************************/
  70. DEFINE_GUID(IID_IHXRealPixRendererCodec, 0x10552e61, 0xc6f1, 0x11d2, 0x8a, 0x4f,
  71.             0x28, 0x90, 0x9a, 0x0, 0x0, 0x0);
  72. #undef  INTERFACE
  73. #define INTERFACE IHXRealPixRendererCodec
  74. DECLARE_INTERFACE_(IHXRealPixRendererCodec, IUnknown)
  75. {
  76.     /*
  77.      * IUnknown methods
  78.      */
  79.     STDMETHOD(QueryInterface)  (THIS_ REFIID riid, void **ppvObj) PURE;
  80.     STDMETHOD_(UINT32,AddRef)  (THIS) PURE;
  81.     STDMETHOD_(UINT32,Release) (THIS) PURE;
  82.     /*
  83.      * IHXRealPixRendererCodec Methods
  84.      */
  85.     /************************************************************************
  86.      *  Method:
  87.      *      IHXRealPixRendererCodec::GetRendererCodecInfo()
  88.      *  Purpose:
  89.      *      Returns the information about the codec: an array of mime types
  90.      *      which this codec supports, and the highest supported content and
  91.      *      stream version.
  92.      */
  93.     STDMETHOD(GetRendererCodecInfo) (THIS_ REF(const char**) rppszFileMimeType,
  94.                                            REF(UINT32)       rulHighestSupportedContentVersion,
  95.                                            REF(UINT32)       rulHighestSupportedStreamVersion) PURE;
  96.     /************************************************************************
  97.      *  Method:
  98.      *      IHXRealPixRendererCodec::ValidInputData()
  99.      *  Purpose:
  100.      *      Determines whether the input buffer contains data which can
  101.      *      be decoded by this codec.
  102.      */
  103.     STDMETHOD(ValidInputData) (THIS_ IHXBuffer* pBuffer, REF(BOOL) rbValid) PURE;
  104.     /************************************************************************
  105.      *  Method:
  106.      *      IHXRealPixRendererCodec::GetHeaderInfo()
  107.      *  Purpose:
  108.      *      This method passes in the header of the compressed
  109.      *      image and finds out information about the image, such as the
  110.      *      number of frames. Also, a session handle is
  111.      *      returned as an out parameter. This session handle should be used
  112.      *      for all successive calls regarding this image.
  113.      *      Special-case or codec-specific header info may be returned in rpImageInfo
  114.      *      if necessary.
  115.      */
  116.     STDMETHOD(GetHeaderInfo) (THIS_ IHXBuffer*      pBuffer,
  117.                                     IHXBuffer*      pOpaqueImageData,
  118.                                     REF(HXxSize)     rImageDim,
  119.                                     REF(UINT32)      rulNumFrames,
  120.                                     REF(IHXValues*) rpImageInfo,
  121.                                     REF(UINT32)      rulSessionHandle) PURE;
  122.     /************************************************************************
  123.      *  Method:
  124.      *      IHXRealPixRendererCodec::GetFrameInfo()
  125.      *  Purpose:
  126.      *      This method finds out information about each
  127.      *      frame in a multi-frame image. Special or codec-specific information
  128.      *      about each frame may be returned in rpFrameInfo.
  129.      */
  130.     STDMETHOD(GetFrameInfo) (THIS_ UINT32           ulSessionHandle,
  131.                                    UINT32           ulFrameNum,
  132.                                    REF(HXxRect)     rFrameDim,
  133.                                    REF(IHXValues*) rpFrameInfo) PURE;
  134.     /************************************************************************
  135.      *  Method:
  136.      *      IHXRealPixRendererCodec::SetDecompressParam()
  137.      *  Purpose:
  138.      *      This methods sets the decompression parameters, such as the
  139.      *      output width and height. It also sets the output buffer and
  140.      *      gives the color and pixel format to which the image should be
  141.      *      decoded. Additional codec-specific decompression parameters
  142.      *      can be set in pMoreParam.
  143.      */
  144.     STDMETHOD(SetDecompressParam) (THIS_ UINT32      ulSessionHandle,
  145.                                          UINT32      ulFrameNum,
  146.                                          IHXBuffer* pOutputBuffer,
  147.                                          HXxSize     cFrameDim,
  148.                                          UINT32      ulRowStride,
  149.                                          UINT32      ulBitsPerPixel,
  150.                                          UINT32      ulColorFormat,
  151.                                          BOOL        bRowsInverted,
  152.                                          IHXValues* pMoreParam) PURE;
  153.     /************************************************************************
  154.      *  Method:
  155.      *      IHXRealPixRendererCodec::Decompress()
  156.      *  Purpose:
  157.      *      This method actually decodes the compressed data in pBuffer into
  158.      *      the appropriate output buffer. 
  159.      */
  160.     STDMETHOD(Decompress) (THIS_ UINT32      ulSessionHandle,
  161.                                  IHXBuffer* pBuffer,
  162.                                  IHXBuffer* pOpaquePacketData) PURE;
  163.     /************************************************************************
  164.      *  Method:
  165.      *      IHXRealPixRendererCodec::GetDecompressStatus()
  166.      *  Purpose:
  167.      *      This method gets returns the status of the decompression. If the
  168.      *      status returns DECODE_STATUS_INPROGRESS, then decompression is
  169.      *      progressing OK and the codec is expecting more data. If the status
  170.      *      is DECODE_STATUS_FINISHED, then the end of the image has been
  171.      *      reached and the codec is not expecting any more data. If the
  172.      *      status is DECODE_STATUS_ABORTED, then the decompression was
  173.      *      aborted and the codec will not accept any more data for this
  174.      *      decompression session.
  175.      */
  176.     STDMETHOD(GetDecompressStatus) (THIS_ UINT32     ulSessionHandle,
  177.                                           REF(INT32) rlStatus) PURE;
  178.     /************************************************************************
  179.      *  Method:
  180.      *      IHXRealPixRendererCodec::FinishDecompress()
  181.      *  Purpose:
  182.      *      This method informs the codec that the caller is finished
  183.      *      with this decompression session and the codec can release
  184.      *      any resources allocated for this session. The codec should
  185.      *      be prepared to accept FinishDecompress() at any time after
  186.      *      GetHeaderInfo().
  187.      */
  188.     STDMETHOD(FinishDecompress) (THIS_ UINT32 ulSessionHandle) PURE;
  189. };
  190. #endif