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

Symbian

开发平台:

Visual C++

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