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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: fbbufctl.h,v 1.3.8.1 2004/07/09 02:05:57 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 FBBUFCTL_H
  50. #define FBBUFCTL_H
  51. #include "hxbufctl.h"
  52. #include "hxengin.h"
  53. #include "hxcore.h"
  54. #include "hxsmbw.h"
  55. #include "hxerror.h"
  56. #include "hxprefs.h" // IHXPreferences
  57. #include "hxpends.h" // IHXPendingStatus
  58. class HXFeedbackControl
  59. {
  60. public:
  61.     HXFeedbackControl();
  62.     
  63.     void Init(double c, double wn, double Kv, double delt);
  64.     void Reset(UINT32 ulSetPoint, 
  65.        INT32 e1, INT32 e2,
  66.        UINT32 c1, UINT32 c2);
  67.     void SetLimits(UINT32 ulMin, UINT32 ulMax);
  68.     UINT32 Control(UINT32 ulCurrentBits);
  69.     double SamplePeriod() const { return m_delt;}
  70.     UINT32 SetPoint() const {return m_ulSetPoint;}
  71.     UINT32 Min() const { return m_ulMin;}
  72.     UINT32 Max() const { return m_ulMax;}
  73. private:
  74.     UINT32 RoundAndClip(double value) const;
  75.     void Enqueue(INT32 error, UINT32 ulBandwidth);
  76.     double m_delt; // Sample period sec
  77.     double m_a1; // Weights in bandwith computation
  78.     double m_a2;
  79.     double m_b1;
  80.     double m_b2;
  81.     UINT32 m_ulSetPoint;        // Target value to stablize at
  82.                                 // Output clipping values
  83.     UINT32 m_ulMin;             // Minimum output value
  84.     UINT32 m_ulMax;             // Maximum output value
  85.     INT32 m_e1;                 // Error history
  86.     INT32 m_e2;
  87.     UINT32 m_c1;                // Control history
  88.     UINT32 m_c2;
  89. };
  90. class HXFeedbackBufferControl : public IHXBufferControl,
  91. public IHXCallback
  92. {
  93. public:
  94.     HXFeedbackBufferControl();
  95.     /*
  96.      * IUnknown methods
  97.      */
  98.     STDMETHOD(QueryInterface)   (THIS_
  99.                                 REFIID riid,
  100.                                 void** ppvObj);
  101.     STDMETHOD_(ULONG32,AddRef)  (THIS);
  102.     STDMETHOD_(ULONG32,Release) (THIS);
  103.     /*
  104.      * IHXBufferControl method
  105.      */
  106.     /************************************************************************
  107.      * Method:
  108.      *     IHXBufferControl::Init
  109.      * Purpose:
  110.      *      Initialize the buffer control object with a context
  111.      *      so it can find the interfaces it needs to do buffer
  112.      *      control
  113.      */
  114.     STDMETHOD(Init) (THIS_ IUnknown* pContext);
  115.     /************************************************************************
  116.      * Method:
  117.      *     IHXBufferControl::OnBuffering
  118.      * Purpose:
  119.      *      Called while buffering
  120.      */
  121.     STDMETHOD(OnBuffering) (THIS_ UINT32 ulRemainingInMs,
  122.     UINT32 ulRemainingInBytes);
  123.     /************************************************************************
  124.      * Method:
  125.      *     IHXBufferControl::OnBufferingDone
  126.      * Purpose:
  127.      *      Called when buffering is done
  128.      */
  129.     STDMETHOD(OnBufferingDone)(THIS);
  130.     /************************************************************************
  131.      * Method:
  132.      *     IHXBufferControl::OnResume
  133.      * Purpose:
  134.      *      Called when playback is resumed
  135.      */
  136.     STDMETHOD(OnResume) (THIS);
  137.     
  138.     /************************************************************************
  139.      * Method:
  140.      *     IHXBufferControl::OnPause
  141.      * Purpose:
  142.      *      Called when playback is paused
  143.      */
  144.     STDMETHOD(OnPause) (THIS);
  145.     /************************************************************************
  146.      * Method:
  147.      *     IHXBufferControl::OnSeek
  148.      * Purpose:
  149.      *      Called when a seek occurs
  150.      */
  151.     STDMETHOD(OnSeek) (THIS);
  152.     /************************************************************************
  153.      * Method:
  154.      *     IHXBufferControl::OnClipEnd
  155.      * Purpose:
  156.      *      Called when we get the last packet in the clip
  157.      */
  158.     STDMETHOD(OnClipEnd) (THIS);
  159.     /************************************************************************
  160.      * Method:
  161.      *     IHXBufferControl::Close()
  162.      * Purpose:
  163.      *      Called when the owner of this object wishes to shutdown
  164.      *      and destroy this object. This call causes the buffer control
  165.      *      object to release all it's interfaces references.
  166.      */
  167.     STDMETHOD(Close)(THIS);
  168.     /************************************************************************
  169.      * Method:
  170.      *     IHXCallback::Func
  171.      * Purpose:
  172.      *     This is the function that will be called when a callback is
  173.      *     to be executed.
  174.      */
  175.     STDMETHOD(Func) (THIS);
  176. private:
  177.     typedef enum {csError,
  178.   csNotInitialized,
  179.   csInitialized,
  180.   csBuffering,
  181.   csPlaying,
  182.   csPaused,
  183.   csSeeking,
  184.   csClipEnd} ControlState;
  185.     ~HXFeedbackBufferControl();
  186.     void ChangeState(ControlState newState);
  187.     BOOL Initialized() const { return (csInitialized <= m_state);}
  188.     void ScheduleCallback();
  189.     void StartCallback();
  190.     void StopCallback();
  191.     HX_RESULT GetBwInfo(REF(UINT32) ulClipBw,
  192. REF(UINT16) nControlStream, REF(UINT32) ulControlBw);
  193.     HX_RESULT GetStreamBw(UINT16 uStreamNumber, REF(UINT32) ulBandwidth);
  194.     BOOL IsAudioStream(UINT16 uStreamNumber);
  195.     
  196.     void GetControlData(REF(UINT32) ulTotalBits,
  197. REF(UINT32) ulControlBits);
  198.     HX_RESULT Control(UINT32 ulControlBits, REF(UINT32) ulNewBandwidth);
  199.     void SetBandwidth(UINT32 ulBandwidth);
  200.     HX_RESULT ReadPrefSettings();
  201.     void SetTransportByteLimits(UINT32 ulClipBw);
  202.     BOOL IsBuffering();
  203.     UINT32 ControlToTotal(UINT32 ulValue);
  204.     UINT32 TotalToControl(UINT32 ulValue);
  205.     UINT32 MulDiv(UINT32 ulValue, UINT32 ulMult, UINT32 ulDiv);
  206.     
  207.     UINT32 ClampBandwidth(UINT32 ulBandwidth) const;
  208.     // Used to initialize functionallity related to testing
  209.     HX_RESULT InitTesting(IUnknown* pContext);
  210.     ULONG32 m_lRefCount;
  211.     IHXScheduler* m_pScheduler;
  212.     CallbackHandle m_callbackHandle;
  213.     HXTimeval m_lastTime;
  214.     IHXStreamSource* m_pSource;
  215.     IHXSourceBufferingStats2* m_pBufferStats;
  216.     IHXThinnableSource* m_pThin;
  217.     IHXPreferences* m_pPrefs;
  218.     IHXPendingStatus* m_pStatus;
  219.     IHXErrorMessages* m_pErrMsg;
  220.     
  221.     HXFeedbackControl m_control; // control algorithm
  222.     UINT32 m_ulClipBw;           // Clip bandwidth
  223.     // Control stream values
  224.     UINT16 m_nControlStream;     // Control stream index
  225.     UINT32 m_ulControlBw;        // Control stream bandwidth
  226.     BOOL m_bControlTotal;        // Control total buffer?
  227.     BOOL m_bPaused;
  228.     ControlState m_state;
  229. };
  230. #endif /* FBBUFCTL_H */