baserend.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 BASEREND_H
  36. #define BASEREND_H
  37. class CRNBaseRenderer : public CHXBaseCountingObject,
  38.                         public IHXPlugin,
  39.                         public IHXStatistics,
  40.                         public IHXRenderer,
  41.                         public IHXValues,
  42.                         public IHXUpdateProperties
  43. {
  44. public:
  45.     CRNBaseRenderer();
  46.     virtual ~CRNBaseRenderer();
  47.     // IUnknown methods
  48.     STDMETHOD(QueryInterface)   (THIS_ REFIID riid, void** ppvObj);
  49.     STDMETHOD_(ULONG32,AddRef)  (THIS);
  50.     STDMETHOD_(ULONG32,Release) (THIS);
  51.     // IHXPlugin Methods
  52.     STDMETHOD(GetPluginInfo)        (THIS_ REF(BOOL)         rbLoadMultiple,
  53.                                            REF(const char *) rpszDescription,
  54.                                            REF(const char *) rpszCopyright,
  55.                                            REF(const char *) rpszMoreInfoURL,
  56.                                            REF(UINT32)       rulVersionNumber);
  57.     STDMETHOD(InitPlugin)           (THIS_ IUnknown *pContext);
  58.     // IHXStatistics methods
  59.     STDMETHOD(InitializeStatistics) (THIS_ UINT32 ulRegistryID);
  60.     STDMETHOD(UpdateStatistics)     (THIS);
  61.     // IHXRenderer methods
  62.     STDMETHOD(GetRendererInfo)      (THIS_ REF(const char**)     pStreamMimeTypes,
  63.                                            REF(UINT32)           rulInitialGranularity);
  64.     STDMETHOD(StartStream)          (THIS_ IHXStream* pStream, IHXPlayer* pPlayer);
  65.     STDMETHOD(EndStream)            (THIS);
  66.     STDMETHOD(OnHeader)             (THIS_ IHXValues* pHeader) PURE;
  67.     STDMETHOD(OnPacket)             (THIS_ IHXPacket* pPacket, LONG32 lTimeOffset);
  68.     STDMETHOD(OnTimeSync)           (THIS_ ULONG32 ulTime);
  69.     STDMETHOD(OnPreSeek)            (THIS_ ULONG32 ulOldTime, ULONG32 ulNewTime);
  70.     STDMETHOD(OnPostSeek)           (THIS_ ULONG32 ulOldTime, ULONG32 ulNewTime);
  71.     STDMETHOD(OnPause)              (THIS_ ULONG32 ulTime);
  72.     STDMETHOD(OnBegin)              (THIS_ ULONG32 ulTime);
  73.     STDMETHOD(OnBuffering)          (THIS_ ULONG32 ulFlags, UINT16 unPercentComplete);
  74.     STDMETHOD(GetDisplayType)       (THIS_ REF(HX_DISPLAY_TYPE) rulFlags,
  75.                                            REF(IHXBuffer*)      pBuffer);
  76.     STDMETHOD(OnEndofPackets)       (THIS);
  77.     // IHXValues methods
  78.     STDMETHOD(SetPropertyULONG32)      (THIS_ const char* pName, ULONG32 ulVal);
  79.     STDMETHOD(GetPropertyULONG32)      (THIS_ const char* pName, REF(ULONG32) rulVal);
  80.     STDMETHOD(GetFirstPropertyULONG32) (THIS_ REF(const char*) rpName, REF(ULONG32) rulVal);
  81.     STDMETHOD(GetNextPropertyULONG32)  (THIS_ REF(const char*) rpName, REF(ULONG32) rulVal);
  82.     STDMETHOD(SetPropertyBuffer)       (THIS_ const char* pName, IHXBuffer* pVal);
  83.     STDMETHOD(GetPropertyBuffer)       (THIS_ const char* pName, REF(IHXBuffer*) rpVal);
  84.     STDMETHOD(GetFirstPropertyBuffer)  (THIS_ REF(const char*) rpName, REF(IHXBuffer*) rpVal);
  85.     STDMETHOD(GetNextPropertyBuffer)   (THIS_ REF(const char*) rpName, REF(IHXBuffer*) rpVal);
  86.     STDMETHOD(SetPropertyCString)      (THIS_ const char* pName, IHXBuffer* pVal);
  87.     STDMETHOD(GetPropertyCString)      (THIS_ const char* pName, REF(IHXBuffer*) rpVal);
  88.     STDMETHOD(GetFirstPropertyCString) (THIS_ REF(const char*) rpName, REF(IHXBuffer*) rpVal);
  89.     STDMETHOD(GetNextPropertyCString)  (THIS_ REF(const char*) rpName, REF(IHXBuffer*) rpVal);
  90.     // IHXUpdateProperties methods
  91.     STDMETHOD(UpdatePacketTimeOffset)  (THIS_ INT32 lTimeOffset);
  92.     STDMETHOD(UpdatePlayTimes)        (THIS_
  93.         IHXValues* pProps);
  94.     // Other methods required by CRNBaseRenderer
  95.     STDMETHOD(OnPacketNoOffset)     (THIS_ IHXPacket* pPacket) PURE;
  96.     STDMETHOD(OnTimeSyncOffset)     (THIS_ UINT32 ulTime)       PURE;
  97. protected:
  98.     INT32                  m_lRefCount;
  99.     IUnknown*              m_pContext;
  100.     IHXCommonClassFactory* m_pCommonClassFactory;
  101.     IHXHyperNavigate*      m_pHyperNavigate;
  102.     IHXPreferences*        m_pPreferences;
  103.     IHXScheduler*          m_pScheduler;
  104.     IHXStream*             m_pStream;
  105.     IHXPlayer*             m_pPlayer;
  106.     IHXBackChannel*        m_pBackChannel;
  107.     IHXASMStream*          m_pASMStream;
  108.     IHXErrorMessages*      m_pErrorMessages;
  109.     IHXValues*             m_pValues;
  110.     UINT32                 m_ulRegistryID;
  111.     INT32                  m_lTimeOffset;
  112.     UINT32                 m_ulContentVersion;
  113.     UINT32                 m_ulStreamVersion;
  114.     UINT32                 m_ulLastTimeSync;
  115.     IHXBuffer*             m_pStreamSourceURL;
  116.     STDMETHOD(GetName)                                   (THIS_ REF(const char*) rpszName) PURE;
  117.     STDMETHOD_(BOOL,GetLoadMultiple)                     (THIS);
  118.     STDMETHOD(GetDescription)                            (THIS_ REF(const char*) rpszDescription) PURE;
  119.     STDMETHOD(GetCopyright)                              (THIS_ REF(const char*) rpszCopyright);
  120.     STDMETHOD(GetMoreInfoURL)                            (THIS_ REF(const char*) rpszMoreInfoURL);
  121.     STDMETHOD(GetMimeTypes)                              (THIS_ REF(const char**) rppszMimeType) PURE;
  122.     STDMETHOD_(UINT32,GetPluginVersion)                  (THIS) PURE;
  123.     STDMETHOD_(UINT32,GetInitialGranularity)             (THIS);
  124.     STDMETHOD_(UINT32,GetDisplayFlags)                   (THIS);
  125.     STDMETHOD_(UINT32,GetHighestSupportedContentVersion) (THIS);
  126.     STDMETHOD_(UINT32,GetHighestSupportedStreamVersion)  (THIS);
  127.     static const char*      const m_pszBaseCopyright;
  128.     static const char*      const m_pszBaseMoreInfoURL;
  129.     STDMETHOD(CheckStreamVersions)        (THIS_ IHXValues* pHeader);
  130.     STDMETHOD(AddMimeToUpgradeCollection) (THIS_ const char* pszMimeType);
  131.     STDMETHOD(GetPreference)              (THIS_ const char*      pszPrefName,
  132.                                                  REF(BOOL)        rbPresent,
  133.                                                  REF(IHXBuffer*) rpBuffer);
  134.     virtual BOOL _IsValidRendererSurface();
  135.     
  136. };
  137. #endif /* #ifdef BASEREND_H */