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

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 PXFFMCOD_H
  36. #define PXFFMCOD_H
  37. typedef _INTERFACE IHXRealPixFileFormatCodec  IHXRealPixFileFormatCodec;
  38. typedef _INTERFACE IHXValues  IHXValues;
  39. /****************************************************************************
  40.  *
  41.  *  Interface: IHXRealPixFileFormatCodec
  42.  *
  43.  *  Purpose:   Interface between RealPix file format and codec
  44.  *
  45.  *  IID_IHXRealPixFileFormatCodec: {309F2D21-CC0A-11d2-8A53-100FF0000000}
  46.  *
  47.  ****************************************************************************/
  48. DEFINE_GUID(IID_IHXRealPixFileFormatCodec, 0x309f2d21, 0xcc0a, 0x11d2, 0x8a, 0x53,
  49.             0x10, 0xf, 0xf0, 0x0, 0x0, 0x0);
  50. #undef  INTERFACE
  51. #define INTERFACE IHXRealPixFileFormatCodec
  52. DECLARE_INTERFACE_(IHXRealPixFileFormatCodec, IUnknown)
  53. {
  54.     /*
  55.      * IUnknown methods
  56.      */
  57.     STDMETHOD(QueryInterface)  (THIS_ REFIID riid, void **ppvObj) PURE;
  58.     STDMETHOD_(UINT32,AddRef)  (THIS) PURE;
  59.     STDMETHOD_(UINT32,Release) (THIS) PURE;
  60.     /*
  61.      * IHXRealPixFileFormatCodec Methods
  62.      */
  63.     /************************************************************************
  64.      *  Method:
  65.      *      IHXRealPixFileFormatCodec::GetFileFormatCodecInfo()
  66.      *  Purpose:
  67.      *      Returns the information about the codec.
  68.      *  Arguments:
  69.      *      rppszFileExtension:    array of file extensions codec can parse (out)
  70.      *      rppszFileMimeType:     array of file mime types codec can parse (out)
  71.      *      rpszStreamMimeType:    stream mime type this codec produces (out)
  72.      *      rulStreamVersion:      stream version this codec will produce (out)
  73.      *      rulMaxPerImageOpaque:  max number of per-image opaque bytes (out)
  74.      *      rulMaxPerPacketOpaque: max number of per-packet opaque bytes (out)
  75.      */
  76.     STDMETHOD(GetFileFormatCodecInfo) (THIS_ REF(const char**) rppszFileExtension,
  77.                                              REF(const char**) rppszFileMimeType,
  78.                                              REF(const char*)  rpszStreamMimeType,
  79.                                              REF(UINT32)       rulStreamVersion,
  80.                                              REF(UINT32)       rulMaxPerImageOpaque,
  81.                                              REF(UINT32)       rulMaxPerPacketOpaque) PURE;
  82.     /************************************************************************
  83.      *  Method:
  84.      *      IHXRealPixFileFormatCodec::ValidInputData()
  85.      *  Purpose:
  86.      *      Determines whether the input buffer contains data which can
  87.      *      be parsed by this codec.
  88.      *  Arguments:
  89.      *      pBuffer: buffer containing beginning of image file (in)
  90.      *  Returns:
  91.      *      TRUE if this codec can parse this data;
  92.      *      FALSE if this codec cannot parse this data
  93.      */
  94.     STDMETHOD_(BOOL,ValidInputData) (THIS_ IHXBuffer* pBuffer) PURE;
  95.     /************************************************************************
  96.      *  Method:
  97.      *      IHXRealPixFileFormatCodec::ParseImage()
  98.      *  Purpose:
  99.      *      This method parses an image file and internally creates packets
  100.      *      out of the file. It also returns information about how the 
  101.      *      image file was packetized.
  102.      *  Arguments:
  103.      *      pBuffer:                  buffer containing image file (in)
  104.      *      rulNumPackets             number of packets produced (out)
  105.      *      rpParam                   packetization information (out)
  106.      *      rulSessionHandle:         handle to refer to this image-parsing session (out)
  107.      *
  108.      *      The following properties are set in rpParam:
  109.      *
  110.      *      Name                 Type     Description
  111.      *      "MaxPacketSize"      ULONG32  Max size of parsed packets
  112.      *      "MinPacketSize"      ULONG32  Min size of parsed packets
  113.      *      "TotalBytes"         ULONG32  Total parsed bytes (data + opaque)
  114.      *      "TotalReqBytes"      ULONG32  Total parsed bytes which cannot handle loss
  115.      *      "TotalNonReqBytes"   ULONG32  Total parsed bytes which can handle loss
  116.      *      "ImageWidth"         ULONG32  Image width in pixels
  117.      *      "ImageHeight"        ULONG32  Image height in pixels
  118.      *      "OpaqueData"         ULONG32  Per-image-file opaque data
  119.      *      "ContentVersion"     ULONG32  Content version of image
  120.      *      "NumPerPacketOpaque" ULONG32  Number of per-packet opaque bytes
  121.      */
  122.     STDMETHOD(ParseImage) (THIS_ IHXBuffer*      pBuffer,
  123.                                  REF(UINT32)      rulNumPackets,
  124.                                  REF(IHXValues*) rpParam,
  125.                                  REF(UINT32)      rulSessionHandle) PURE;
  126.     /************************************************************************
  127.      *  Method:
  128.      *      IHXRealPixFileFormatCodec::GetImagePacket()
  129.      *  Purpose:
  130.      *      This methods retrieves the data for a particular packet.
  131.      *  Arguments:
  132.      *      ulSessionHandle:    image parsing session handle (in)
  133.      *      ulPacketNum:        index of packet (in)
  134.      *      rpPacketBuffer:     buffer containing raw image data (out)
  135.      *      rpOpaquePacketData: per-packet opaque data (out)
  136.      *      rbRequired:         TRUE: cannot decode without this packet
  137.      *                          FALSE: can decode without this packet
  138.      */
  139.     STDMETHOD(GetImagePacket) (THIS_ UINT32           ulSessionHandle,
  140.                                      UINT32           ulPacketNum,
  141.                                      REF(IHXBuffer*) rpPacketBuffer,
  142.                                      REF(IHXBuffer*) rpOpaquePacketData,
  143.                                      REF(BOOL)        rbRequired) PURE;
  144.     /************************************************************************
  145.      *  Method:
  146.      *      IHXRealPixFileFormatCodec::ReleaseImage()
  147.      *  Purpose:
  148.      *      This method informs the codec that the caller is finished with
  149.      *      this image and the codec can release all resources
  150.      *      associated with it.
  151.      *  Arguments:
  152.      *      ulSessionHandle: image-parsing session handle
  153.      */
  154.     STDMETHOD(ReleaseImage) (THIS_ UINT32 ulSessionHandle) PURE;
  155. };
  156. #endif