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

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 _IMF_FILEIO_H
  36. #define _IMF_FILEIO_H
  37. // {5929D7B0-BE6C-11d1-A5A8-0000C0D3964C}
  38. DEFINE_GUID(IID_IIMFFileIO, 0x5929d7b0, 
  39.             0xbe6c, 0x11d1, 0xa5, 0xa8, 0x0, 0x0, 0xc0, 0xd3, 0x96, 0x4c);
  40. #define CLSID_IIMFFileIO IID_IIMFFileIO
  41. #undef  INTERFACE
  42. #define INTERFACE       IIMFFileIO
  43. typedef struct _IMFHEADERtag
  44. {
  45.     char m_cTitle[256]; /* Flawfinder: ignore */
  46.     char m_cAuthor[256]; /* Flawfinder: ignore */
  47.     char m_cCopyWrt[256]; /* Flawfinder: ignore */ /* 2 wrngs don't make a "Wrt" */
  48.     UINT32 m_ulStartTime;
  49.     UINT32 m_ulDuration;
  50.     UINT32 m_ulPreroll;
  51.     UINT32 m_ulBitrate;
  52.     UINT32 m_ulDisplayWidth;
  53.     UINT32 m_ulDisplayHeight;
  54.     UINT32 m_ulMaxFPS;
  55.     int   m_bAspectFlag;
  56.     void  Clear()
  57.     { 
  58.         strcpy(m_cTitle,""); /* Flawfinder: ignore */
  59.         strcpy(m_cAuthor,""); /* Flawfinder: ignore */
  60.         strcpy(m_cCopyWrt,""); /* Flawfinder: ignore */
  61.         m_ulStartTime=0;
  62.         m_ulDuration=0;
  63.         m_ulPreroll=0;
  64.         m_ulBitrate=0;
  65.         m_ulDisplayWidth=0;
  66.         m_ulDisplayHeight=0;
  67.         m_ulMaxFPS=0;
  68.         m_bAspectFlag=0;
  69.     };
  70. }IMFHEADER;
  71. typedef struct _IMFEFFECTtag
  72. {
  73.     // Common to All Types
  74.     UINT32      m_ulType;
  75.     UINT32      m_ulBinSize;
  76.     UINT32      m_ulMaxFps;
  77.     UINT32      m_ulStart;
  78. // Type Specific
  79.     UINT32     m_ulTarget;
  80.     char       m_cURL[256]; /* Flawfinder: ignore */
  81.     UINT32     m_ulDirection;
  82.     UINT32     m_ulDuration;
  83.     unsigned char m_ucRed;
  84.     unsigned char m_ucGreen;
  85.     unsigned char m_ucBlue;
  86.     BOOL       m_bAspect;
  87.     BOOL       m_bDefaultAspect;    
  88.     char       m_cPackage[256]; /* Flawfinder: ignore */
  89.     char       m_cName[256];
  90.     char       m_cData[256]; /* Flawfinder: ignore */
  91.     char       m_cFile[256]; /* Flawfinder: ignore */
  92.     int m_nDest_x;
  93.     int m_nDest_y;
  94.     int m_nDest_W;
  95.     int m_nDest_H;
  96.     
  97.     int m_nSrc_x;
  98.     int m_nSrc_y;
  99.     int m_nSrc_W;
  100.     int m_nSrc_H;
  101.     void  Clear()
  102.     { 
  103.         strcpy(m_cPackage,""); /* Flawfinder: ignore */
  104.         strcpy(m_cName,""); /* Flawfinder: ignore */
  105.         strcpy(m_cFile,""); /* Flawfinder: ignore */
  106.         strcpy(m_cData,""); /* Flawfinder: ignore */
  107.         strcpy(m_cURL,""); /* Flawfinder: ignore */
  108.         m_ulType    = 0xFF;
  109.         m_ulBinSize = 0;
  110.         m_ulMaxFps  = 0;
  111.         m_ulStart   = 0;
  112.         m_ulDuration = 0;        
  113.         m_ulTarget    = 0;
  114.         m_ulDirection = 0;
  115.         m_bAspect = 0;
  116.         m_bDefaultAspect = 0;    
  117.         m_nDest_x =0;
  118.         m_nDest_y =0;
  119.         m_nDest_W =0;
  120.         m_nDest_H =0;
  121.         m_nSrc_x =0;
  122.         m_nSrc_y =0;
  123.         m_nSrc_W =0;
  124.         m_nSrc_H =0;
  125.     };    
  126. }IMFEFFECT;
  127. typedef struct _IMFIMAGEtag
  128. {
  129.     char m_ImageName[256]; /* Flawfinder: ignore */
  130.     int  m_nHandle;
  131. }IMFIMAGE;
  132. ////////////////////////////////////////////////////////////
  133. // IMFFileIO
  134. // Interface for reading/writing IMF Files
  135. ////////////////////////////////////////////////////////////
  136. DECLARE_INTERFACE_(IIMFFileIO, IUnknown)
  137. {
  138.    // IUnknown Methods 
  139.    STDMETHOD(QueryInterface)   (THIS_ REFIID riid, void **ppvObj) PURE;
  140.    STDMETHOD_(UINT32,AddRef) () PURE;
  141.    STDMETHOD_(UINT32,Release) () PURE;
  142.    // IMFFileIO Methods 
  143.    STDMETHOD(AddHeader) (void * pBuffer,UINT32 ulBufferSize) PURE;
  144.    STDMETHOD(GetHeader) (void * pBuffer,UINT32 ulBufferSize) PURE;
  145.    STDMETHOD_(UINT32,AddImageTag) (void * pBuffer,UINT32 ulBufferSize) PURE;
  146.    STDMETHOD_(UINT32,GetImageTag) (UINT32 nIdx,void * pBuffer,UINT32 ulBufferSize) PURE;
  147.    STDMETHOD_(UINT32,GetImageTagCount) () PURE;
  148.    STDMETHOD_(UINT32,RemoveImageTag) (UINT32 nIdx) PURE;
  149.    STDMETHOD_(UINT32,AddEffectTag) (void * pBuffer,UINT32 ulBufferSize) PURE;
  150.    STDMETHOD_(UINT32,GetEffectTag) (UINT32 nIdx,void * pBuffer,UINT32 ulBufferSize) PURE;
  151.    STDMETHOD_(UINT32,GetEffectTagCount) () PURE;   
  152.    STDMETHOD_(UINT32,RemoveEffectTag) (UINT32 nIdx) PURE;
  153.    STDMETHOD(InitFromBuffer) (void * pBuffer,UINT32 ulBufferSize) PURE;
  154.    STDMETHOD(GetIMFScript) (void * pBuffer,UINT32 ulBufferSize) PURE;
  155.    STDMETHOD_(UINT32,GetIMFScriptBufferLength)() PURE;
  156.    STDMETHOD_(UINT32,Validate) (void * pBuffer,UINT32 ulBufferSize) PURE;
  157.    STDMETHOD_(UINT32,GetError) (void * pBuffer,UINT32 ulBufferSize) PURE;
  158.    STDMETHOD(Clear) () PURE;
  159. };
  160. ////////////////////////////////////////////////////////////
  161. #endif