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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: wmbufctl.cpp,v 1.2.8.1 2004/07/09 02:05:58 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. #include "hxtypes.h"
  50. #include "hxresult.h"
  51. #include "hxcom.h"
  52. #include "wmbufctl.h"
  53. #include "hxstring.h"
  54. #include "hxbsrc.h" // HXSource
  55. #include "hxtick.h"
  56. #include "debug.h"
  57. #define D_WM_BUF_CTL 0x10000000
  58. /* Added these constants temporarily to tell ASM when to slow down
  59.  * Accelerated buffering
  60.  */
  61. #define MAX_BUFFERING_INMS              20000
  62. #define MAX_BUFFERING_INBYTES           4000000
  63. /*
  64.  * These constants are to tell ASM to slow down below the stated clip rate
  65.  * if we have buffered an insane amount of data.
  66.  * This can happen if the bitrate of a stream is signficantly lower at some
  67.  * points then the actual clip rate (i.e. high bit-rate video).  These values
  68.  * need to be VERY aggressive so we don't cut off things like flash which
  69.  * will get WAY ahead and then spend the bits later on in the clip.
  70.  */
  71. #define MAX_BUFFERING_SLOW_HALF_INMS            300000
  72. #define MAX_BUFFERING_SLOW_HALF_INBYTES         5000000
  73. #define MAX_BUFFERING_SLOW_ONE_HUNDRETH_INMS    400000
  74. #define MAX_BUFFERING_SLOW_ONE_HUNDRETH_INBYTES 6000000
  75. HXWatermarkBufferControl::HXWatermarkBufferControl() :
  76.     m_lRefCount(0),
  77.     m_pSource(NULL),
  78.     m_ChillState(HX_NONE)
  79. {
  80.     DPRINTF(D_WM_BUF_CTL, ("HXWatermarkBufferControl()n"));
  81. }
  82.     
  83. HXWatermarkBufferControl::~HXWatermarkBufferControl()
  84. {
  85.     HX_RELEASE(m_pSource);
  86. }
  87. /*
  88.  * IUnknown methods
  89.  */
  90. STDMETHODIMP HXWatermarkBufferControl::QueryInterface(THIS_
  91.       REFIID riid,
  92.       void** ppvObj)
  93. {
  94.     QInterfaceList qiList[] =
  95.     {
  96. { GET_IIDHANDLE(IID_IUnknown), (IUnknown*)this }, 
  97. { GET_IIDHANDLE(IID_IHXBufferControl), (IHXBufferControl*)this },
  98. { GET_IIDHANDLE(IID_IHXWatermarkBufferControl), (IHXWatermarkBufferControl*)this }
  99.     };
  100.     
  101.     return ::QIFind(qiList, QILISTSIZE(qiList), riid, ppvObj);
  102. }
  103. STDMETHODIMP_(ULONG32) HXWatermarkBufferControl::AddRef(THIS)
  104. {
  105.     return InterlockedIncrement(&m_lRefCount);
  106. }
  107. STDMETHODIMP_(ULONG32) HXWatermarkBufferControl::Release(THIS)
  108. {
  109.     if (InterlockedDecrement(&m_lRefCount) > 0)
  110.     {
  111. return m_lRefCount;
  112.     }
  113.     delete this;
  114.     return 0;
  115. }
  116. /*
  117.  * IHXBufferControl method
  118.  */
  119. /************************************************************************
  120.  * Method:
  121.  *     IHXBufferControl::Init
  122.  * Purpose:
  123.  *          Initialize the buffer control object with a context
  124.  *          so it can find the interfaces it needs to do buffer
  125.  *          control
  126.  */
  127. STDMETHODIMP HXWatermarkBufferControl::Init(THIS_ IUnknown* pContext)
  128. {
  129.     return HXR_OK;
  130. }
  131. /************************************************************************
  132.  * Method:
  133.  *     IHXBufferControl::OnBuffering
  134.  * Purpose:
  135.  *          Called while buffering
  136.  */
  137. STDMETHODIMP HXWatermarkBufferControl::OnBuffering(UINT32 ulRemainingInMs,
  138.    UINT32 ulRemainingInBytes)
  139. {
  140.     return ResetAccelState();
  141. }
  142. /************************************************************************
  143.  * Method:
  144.  *     IHXBufferControl::OnBufferingDone
  145.  * Purpose:
  146.  *      Called when buffering is done
  147.  */
  148. STDMETHODIMP HXWatermarkBufferControl::OnBufferingDone(THIS)
  149. {
  150.     return HXR_OK;
  151. }
  152. /************************************************************************
  153.  * Method:
  154.  *     IHXBufferControl::OnResume
  155.  * Purpose:
  156.  *          Called when playback is resumed
  157.  */
  158. STDMETHODIMP HXWatermarkBufferControl::OnResume(THIS)
  159. {
  160.     return ResetAccelState();
  161. }
  162.     
  163. /************************************************************************
  164.  * Method:
  165.  *     IHXBufferControl::OnPause
  166.  * Purpose:
  167.  *          Called when playback is paused
  168.  */
  169. STDMETHODIMP HXWatermarkBufferControl::OnPause(THIS)
  170. {
  171.     return HXR_OK;
  172. }
  173. /************************************************************************
  174.  * Method:
  175.  *     IHXBufferControl::OnSeek
  176.  * Purpose:
  177.  *          Called when a seek occurs
  178.  */
  179. STDMETHODIMP HXWatermarkBufferControl::OnSeek(THIS)
  180. {
  181.     return ResetAccelState();
  182. }
  183. /************************************************************************
  184.  * Method:
  185.  *     IHXBufferControl::OnClipEnd
  186.  * Purpose:
  187.  *          Called when we get the last packet in the clip
  188.  */
  189. STDMETHODIMP HXWatermarkBufferControl::OnClipEnd(THIS)
  190. {
  191.     return HXR_OK;
  192. }
  193. /************************************************************************
  194.  * Method:
  195.  *     IHXBufferControl::Close()
  196.  * Purpose:
  197.  *          Called when the owner of this object wishes to shutdown
  198.  *          and destroy this object. This call causes the buffer control
  199.  *          object to release all it's interfaces references.
  200.  */
  201. STDMETHODIMP HXWatermarkBufferControl::Close(THIS)
  202. {
  203.     ClearChillState();
  204.     HX_RELEASE(m_pSource);
  205.     return HXR_OK;
  206. }
  207. /*
  208.  * IHXWatermarkBufferControl method
  209.  */
  210. /************************************************************************
  211.  * Method:
  212.  *     IHXWatermarkBufferControl::SetSource
  213.  * Purpose:
  214.  *          Tells the object what HXSource object it is associated with.
  215.  */
  216. STDMETHODIMP HXWatermarkBufferControl::SetSource(THIS_ HXSource* pSource)
  217. {
  218.     HX_RESULT res = HXR_FAILED;
  219.     HX_RELEASE(m_pSource);
  220.     m_pSource = pSource;
  221.     if( m_pSource)
  222.     {
  223. m_pSource->AddRef();
  224. res = HXR_OK;
  225.     }
  226.     return res;
  227. }
  228. /************************************************************************
  229.  * Method:
  230.  *     IHXWatermarkBufferControl::OnBufferReport
  231.  * Purpose:
  232.  *          Initiates control operations based on buffering information.
  233.  *      
  234.  */
  235. STDMETHODIMP HXWatermarkBufferControl::OnBufferReport(THIS_ 
  236.       UINT32 ulBufferInMs,
  237.       UINT32 ulBuffer)
  238. {
  239.     DPRINTF(D_WM_BUF_CTL, ("WBC::OBR %u %u %u %u %sn",
  240.    HX_GET_TICKCOUNT(),
  241.    ulBufferInMs,
  242.    ulBuffer,
  243.    m_ChillState,
  244.    (m_ChillState == HX_NONE) ? "NONE" :
  245.    (m_ChillState == CHILL) ? "CHILL" :
  246.    (m_ChillState == HALF) ? "HALF" :
  247.    (m_ChillState == HUNDRETH) ? "HUNDRETH" :
  248.    "UNKNOWN"));
  249.     if (m_ChillState == HALF && 
  250. (ulBufferInMs > MAX_BUFFERING_SLOW_ONE_HUNDRETH_INMS ||
  251.  ulBuffer > MAX_BUFFERING_SLOW_ONE_HUNDRETH_INBYTES))
  252.     {
  253. m_ChillState = HUNDRETH;
  254. ChangeAccelerationStatus(FALSE, TRUE, 1);
  255.     }
  256.     else if (m_ChillState == CHILL && 
  257.      (ulBufferInMs > MAX_BUFFERING_SLOW_HALF_INMS ||
  258.       ulBuffer > MAX_BUFFERING_SLOW_HALF_INBYTES))
  259.     {
  260. m_ChillState = HALF;
  261. ChangeAccelerationStatus(FALSE, TRUE, 50);
  262.     }
  263.     /*
  264.      * XXXSMP  Perhaps we want to stop at MAX_BUFFERING on the way back
  265.      * to MAX_BUFFERING / 2 (In the case where we are at HALF or HUNDRETH.
  266.      * This will prevent switch to CHILL and then HALF again on the way
  267.      * back down.  No big deal for now.
  268.      */
  269.     else if (m_ChillState == HX_NONE &&
  270.      (ulBufferInMs > MAX_BUFFERING_INMS ||
  271.       ulBuffer > MAX_BUFFERING_INBYTES))
  272.     {
  273. m_ChillState = CHILL;
  274. ChangeAccelerationStatus(FALSE, FALSE, 0);
  275.     }
  276.     else if (m_ChillState != HX_NONE &&
  277.      (ulBufferInMs < MAX_BUFFERING_INMS/2 &&
  278.       ulBuffer < MAX_BUFFERING_INBYTES/2))
  279.     {
  280. m_ChillState = HX_NONE;
  281. ChangeAccelerationStatus(TRUE, FALSE, 0);
  282.     }
  283.     return HXR_OK;
  284. }
  285. /************************************************************************
  286.  * Method:
  287.  *     IHXWatermarkBufferControl::ClearChillState
  288.  * Purpose:
  289.  *          Sets the chill state to NONE
  290.  *      
  291.  */
  292. STDMETHODIMP HXWatermarkBufferControl::ClearChillState(THIS)
  293. {
  294.     m_ChillState = HX_NONE;
  295.     return HXR_OK;
  296. }
  297. HX_RESULT
  298. HXWatermarkBufferControl::ChangeAccelerationStatus(BOOL bMayBeAccelerated,
  299.    BOOL bUseAccelerationFactor,
  300.    UINT32 ulAccelerationFactor)
  301. {
  302.     IHXBandwidthManager* pMgr = 0;
  303.     
  304.     HX_RESULT res = m_pSource->QueryInterface(IID_IHXBandwidthManager, 
  305.       (void **)&pMgr);
  306.     if (pMgr)
  307.     {
  308. pMgr->ChangeAccelerationStatus(m_pSource, bMayBeAccelerated,
  309.        bUseAccelerationFactor, 
  310.        ulAccelerationFactor);
  311. pMgr->Release();
  312.     }
  313.     return res;
  314. }
  315. HX_RESULT HXWatermarkBufferControl::ResetAccelState()
  316. {
  317.     if (m_ChillState != HX_NONE)
  318.     {
  319. m_ChillState = HX_NONE;
  320. ChangeAccelerationStatus(TRUE, FALSE, 0);
  321.     }
  322.     return HXR_OK;
  323. }