wmbufctl.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-2003 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 WMBUFCTL_H
  36. #define WMBUFCTL_H
  37. #include "hxbufctl.h"
  38. class HXWatermarkBufferControl : public IHXWatermarkBufferControl
  39. {
  40. public:
  41.     HXWatermarkBufferControl();
  42.     
  43.     /*
  44.      * IUnknown methods
  45.      */
  46.     STDMETHOD(QueryInterface)   (THIS_
  47.                                 REFIID riid,
  48.                                 void** ppvObj);
  49.     STDMETHOD_(ULONG32,AddRef)  (THIS);
  50.     STDMETHOD_(ULONG32,Release) (THIS);
  51.     /*
  52.      * IHXBufferControl method
  53.      */
  54.     /************************************************************************
  55.      * Method:
  56.      *     IHXBufferControl::Init
  57.      * Purpose:
  58.      *      Initialize the buffer control object with a context
  59.      *      so it can find the interfaces it needs to do buffer
  60.      *      control
  61.      */
  62.     STDMETHOD(Init) (THIS_ IUnknown* pContext);
  63.     /************************************************************************
  64.      * Method:
  65.      *     IHXBufferControl::OnBuffering
  66.      * Purpose:
  67.      *      Called while buffering
  68.      */
  69.     STDMETHOD(OnBuffering) (THIS_ UINT32 ulRemainingInMs,
  70.     UINT32 ulRemainingInBytes);
  71.     /************************************************************************
  72.      * Method:
  73.      *     IHXBufferControl::OnBufferingDone
  74.      * Purpose:
  75.      *      Called when buffering is done
  76.      */
  77.     STDMETHOD(OnBufferingDone)(THIS);
  78.     /************************************************************************
  79.      * Method:
  80.      *     IHXBufferControl::OnResume
  81.      * Purpose:
  82.      *      Called when playback is resumed
  83.      */
  84.     STDMETHOD(OnResume) (THIS);
  85.     
  86.     /************************************************************************
  87.      * Method:
  88.      *     IHXBufferControl::OnPause
  89.      * Purpose:
  90.      *      Called when playback is paused
  91.      */
  92.     STDMETHOD(OnPause) (THIS);
  93.     /************************************************************************
  94.      * Method:
  95.      *     IHXBufferControl::OnSeek
  96.      * Purpose:
  97.      *      Called when a seek occurs
  98.      */
  99.     STDMETHOD(OnSeek) (THIS);
  100.     /************************************************************************
  101.      * Method:
  102.      *     IHXBufferControl::OnClipEnd
  103.      * Purpose:
  104.      *      Called when we get the last packet in the clip
  105.      */
  106.     STDMETHOD(OnClipEnd) (THIS);
  107.     /************************************************************************
  108.      * Method:
  109.      *     IHXBufferControl::Close()
  110.      * Purpose:
  111.      *      Called when the owner of this object wishes to shutdown
  112.      *      and destroy this object. This call causes the buffer control
  113.      *      object to release all it's interfaces references.
  114.      */
  115.     STDMETHOD(Close)(THIS);
  116.     /*
  117.      * IHXWatermarkBufferControl method
  118.      */
  119.     /************************************************************************
  120.      * Method:
  121.      *     IHXWatermarkBufferControl::SetSource
  122.      * Purpose:
  123.      *      Tells the object what HXSource object it is associated with.
  124.      */
  125.     STDMETHOD(SetSource)(THIS_ HXSource* pSource);
  126.     /************************************************************************
  127.      * Method:
  128.      *     IHXWatermarkBufferControl::OnBufferReport
  129.      * Purpose:
  130.      *      Initiates control operations based on buffering information.
  131.      *      
  132.      */
  133.     STDMETHOD(OnBufferReport)(THIS_ UINT32 ulBufferInMs,
  134.       UINT32 ulBuffer);
  135.     /************************************************************************
  136.      * Method:
  137.      *     IHXWatermarkBufferControl::ClearChillState
  138.      * Purpose:
  139.      *      Sets the chill state to NONE
  140.      *      
  141.      */
  142.     STDMETHOD(ClearChillState)(THIS);
  143. private:
  144.     ~HXWatermarkBufferControl();
  145.     HX_RESULT ChangeAccelerationStatus(BOOL bMayBeAccelerated,
  146.        BOOL bUseAccelerationFactor,
  147.        UINT32 ulAccelerationFactor);
  148.     HX_RESULT ResetAccelState();
  149.     ULONG32 m_lRefCount;
  150.     HXSource* m_pSource;
  151.     enum ChillState { HX_NONE, CHILL, HALF, HUNDRETH };
  152.     enum ChillState m_ChillState;
  153. };
  154. #endif /* WMBUFCTL_H */