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

Symbian

开发平台:

Visual C++

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