зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1123452 - Try to enter dormant state when document is hidden r=cpearce
This commit is contained in:
Родитель
ca5f74b06d
Коммит
4c24c6b995
|
@ -36,6 +36,9 @@
|
|||
using namespace mozilla::layers;
|
||||
using namespace mozilla::dom;
|
||||
|
||||
// Default timeout msecs until try to enter dormant state by heuristic.
|
||||
static const int DEFAULT_HEURISTIC_DORMANT_TIMEOUT_MSECS = 60000;
|
||||
|
||||
namespace mozilla {
|
||||
|
||||
// Number of estimated seconds worth of data we need to have buffered
|
||||
|
@ -123,27 +126,56 @@ void MediaDecoder::NotifyOwnerActivityChanged()
|
|||
MOZ_ASSERT(NS_IsMainThread());
|
||||
ReentrantMonitorAutoEnter mon(GetReentrantMonitor());
|
||||
|
||||
if (!mDecoderStateMachine ||
|
||||
!mDecoderStateMachine->IsDormantNeeded() ||
|
||||
mPlayState == PLAY_STATE_SHUTDOWN) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!mOwner) {
|
||||
NS_WARNING("MediaDecoder without a decoder owner, can't update dormant");
|
||||
return;
|
||||
}
|
||||
|
||||
UpdateDormantState(false /* aDormantTimeout */, false /* aActivity */);
|
||||
// Start dormant timer if necessary
|
||||
StartDormantTimer();
|
||||
}
|
||||
|
||||
void MediaDecoder::UpdateDormantState(bool aDormantTimeout, bool aActivity)
|
||||
{
|
||||
MOZ_ASSERT(NS_IsMainThread());
|
||||
GetReentrantMonitor().AssertCurrentThreadIn();
|
||||
|
||||
if (!mDecoderStateMachine ||
|
||||
mPlayState == PLAY_STATE_SHUTDOWN ||
|
||||
!mOwner->GetVideoFrameContainer() ||
|
||||
!mDecoderStateMachine->IsDormantNeeded())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
bool prevDormant = mIsDormant;
|
||||
mIsDormant = false;
|
||||
if (!mOwner->IsActive() && mOwner->GetVideoFrameContainer()) {
|
||||
if (!mOwner->IsActive()) {
|
||||
mIsDormant = true;
|
||||
}
|
||||
#ifdef MOZ_WIDGET_GONK
|
||||
if (mOwner->IsHidden() && mOwner->GetVideoFrameContainer()) {
|
||||
if (mOwner->IsHidden()) {
|
||||
mIsDormant = true;
|
||||
}
|
||||
#endif
|
||||
// Try to enable dormant by idle heuristic, when the owner is hidden.
|
||||
bool prevHeuristicDormant = mIsHeuristicDormant;
|
||||
mIsHeuristicDormant = false;
|
||||
if (mIsHeuristicDormantSupported && mOwner->IsHidden()) {
|
||||
if (aDormantTimeout && !aActivity &&
|
||||
(mPlayState == PLAY_STATE_PAUSED || mPlayState == PLAY_STATE_ENDED)) {
|
||||
// Enable heuristic dormant
|
||||
mIsHeuristicDormant = true;
|
||||
} else if(prevHeuristicDormant && !aActivity) {
|
||||
// Continue heuristic dormant
|
||||
mIsHeuristicDormant = true;
|
||||
}
|
||||
|
||||
if (mIsHeuristicDormant) {
|
||||
mIsDormant = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (prevDormant == mIsDormant) {
|
||||
// No update to dormant state
|
||||
|
@ -167,6 +199,47 @@ void MediaDecoder::NotifyOwnerActivityChanged()
|
|||
}
|
||||
}
|
||||
|
||||
void MediaDecoder::DormantTimerExpired(nsITimer* aTimer, void* aClosure)
|
||||
{
|
||||
MOZ_ASSERT(aClosure);
|
||||
MediaDecoder* decoder = static_cast<MediaDecoder*>(aClosure);
|
||||
ReentrantMonitorAutoEnter mon(decoder->GetReentrantMonitor());
|
||||
decoder->UpdateDormantState(true /* aDormantTimeout */,
|
||||
false /* aActivity */);
|
||||
}
|
||||
|
||||
void MediaDecoder::StartDormantTimer()
|
||||
{
|
||||
if (!mIsHeuristicDormantSupported) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (mIsHeuristicDormant ||
|
||||
mShuttingDown ||
|
||||
!mOwner ||
|
||||
!mOwner->IsHidden() ||
|
||||
(mPlayState != PLAY_STATE_PAUSED &&
|
||||
mPlayState != PLAY_STATE_ENDED))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if (!mDormantTimer) {
|
||||
mDormantTimer = do_CreateInstance("@mozilla.org/timer;1");
|
||||
}
|
||||
mDormantTimer->InitWithFuncCallback(&MediaDecoder::DormantTimerExpired,
|
||||
this,
|
||||
mHeuristicDormantTimeout,
|
||||
nsITimer::TYPE_ONE_SHOT);
|
||||
}
|
||||
|
||||
void MediaDecoder::CancelDormantTimer()
|
||||
{
|
||||
if (mDormantTimer) {
|
||||
mDormantTimer->Cancel();
|
||||
}
|
||||
}
|
||||
|
||||
void MediaDecoder::Pause()
|
||||
{
|
||||
MOZ_ASSERT(NS_IsMainThread());
|
||||
|
@ -472,7 +545,13 @@ MediaDecoder::MediaDecoder() :
|
|||
mPausedForPlaybackRateNull(false),
|
||||
mMinimizePreroll(false),
|
||||
mMediaTracksConstructed(false),
|
||||
mIsDormant(false)
|
||||
mIsDormant(false),
|
||||
mIsHeuristicDormantSupported(
|
||||
Preferences::GetBool("media.decoder.heuristic.dormant.enabled", false)),
|
||||
mHeuristicDormantTimeout(
|
||||
Preferences::GetInt("media.decoder.heuristic.dormant.timeout",
|
||||
DEFAULT_HEURISTIC_DORMANT_TIMEOUT_MSECS)),
|
||||
mIsHeuristicDormant(false)
|
||||
{
|
||||
MOZ_COUNT_CTOR(MediaDecoder);
|
||||
MOZ_ASSERT(NS_IsMainThread());
|
||||
|
@ -521,6 +600,8 @@ void MediaDecoder::Shutdown()
|
|||
mResource->Close();
|
||||
}
|
||||
|
||||
CancelDormantTimer();
|
||||
|
||||
ChangeState(PLAY_STATE_SHUTDOWN);
|
||||
|
||||
mOwner = nullptr;
|
||||
|
@ -622,6 +703,8 @@ nsresult MediaDecoder::Play()
|
|||
{
|
||||
MOZ_ASSERT(NS_IsMainThread());
|
||||
ReentrantMonitorAutoEnter mon(GetReentrantMonitor());
|
||||
UpdateDormantState(false /* aDormantTimeout */, true /* aActivity */);
|
||||
|
||||
NS_ASSERTION(mDecoderStateMachine != nullptr, "Should have state machine.");
|
||||
if (mPausedForPlaybackRateNull) {
|
||||
return NS_OK;
|
||||
|
@ -644,6 +727,7 @@ nsresult MediaDecoder::Seek(double aTime, SeekTarget::Type aSeekType)
|
|||
{
|
||||
MOZ_ASSERT(NS_IsMainThread());
|
||||
ReentrantMonitorAutoEnter mon(GetReentrantMonitor());
|
||||
UpdateDormantState(false /* aDormantTimeout */, true /* aActivity */);
|
||||
|
||||
NS_ABORT_IF_FALSE(aTime >= 0.0, "Cannot seek to a negative value.");
|
||||
|
||||
|
@ -1192,6 +1276,10 @@ void MediaDecoder::ChangeState(PlayState aState)
|
|||
|
||||
ApplyStateToStateMachine(mPlayState);
|
||||
|
||||
CancelDormantTimer();
|
||||
// Start dormant timer if necessary
|
||||
StartDormantTimer();
|
||||
|
||||
GetReentrantMonitor().NotifyAll();
|
||||
}
|
||||
|
||||
|
|
|
@ -188,6 +188,7 @@ destroying the MediaDecoder object.
|
|||
#include "nsCOMPtr.h"
|
||||
#include "nsIObserver.h"
|
||||
#include "nsAutoPtr.h"
|
||||
#include "nsITimer.h"
|
||||
#include "MediaResource.h"
|
||||
#include "mozilla/dom/AudioChannelBinding.h"
|
||||
#include "mozilla/gfx/Rect.h"
|
||||
|
@ -367,6 +368,8 @@ public:
|
|||
// It is used to share scarece media resources in system.
|
||||
virtual void NotifyOwnerActivityChanged();
|
||||
|
||||
void UpdateDormantState(bool aDormantTimeout, bool aActivity);
|
||||
|
||||
// Pause video playback.
|
||||
virtual void Pause();
|
||||
// Adjust the speed of the playback, optionally with pitch correction,
|
||||
|
@ -1022,6 +1025,14 @@ protected:
|
|||
virtual ~MediaDecoder();
|
||||
void SetStateMachineParameters();
|
||||
|
||||
static void DormantTimerExpired(nsITimer *aTimer, void *aClosure);
|
||||
|
||||
// Start a timer for heuristic dormant.
|
||||
void StartDormantTimer();
|
||||
|
||||
// Cancel a timer for heuristic dormant.
|
||||
void CancelDormantTimer();
|
||||
|
||||
/******
|
||||
* The following members should be accessed with the decoder lock held.
|
||||
******/
|
||||
|
@ -1219,6 +1230,18 @@ protected:
|
|||
|
||||
// True if MediaDecoder is in dormant state.
|
||||
bool mIsDormant;
|
||||
|
||||
// True if heuristic dormant is supported.
|
||||
const bool mIsHeuristicDormantSupported;
|
||||
|
||||
// Timeout ms of heuristic dormant timer.
|
||||
const int mHeuristicDormantTimeout;
|
||||
|
||||
// True if MediaDecoder is in dormant by heuristic.
|
||||
bool mIsHeuristicDormant;
|
||||
|
||||
// Timer to schedule updating dormant state.
|
||||
nsCOMPtr<nsITimer> mDormantTimer;
|
||||
};
|
||||
|
||||
} // namespace mozilla
|
||||
|
|
Загрузка…
Ссылка в новой задаче