gecko-dev/dom/media/mediacontrol/AudioFocusManager.cpp
alwu 08b87ffa96 Bug 1606782 - part5 : handle audio competing first r=chunmin,bryce
Currently we append the new controller first, then clear all controllers when handling audio competing, and finally add the new controller to `mOwningFocusControllers` again.

We can handle audio competing first, then adding the new controller, which can avoid adding same controller twice.

Differential Revision: https://phabricator.services.mozilla.com/D58735

--HG--
extra : moz-landing-system : lando
2020-01-16 00:06:59 +00:00

61 lines
1.8 KiB
C++

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "AudioFocusManager.h"
#include "MediaControlUtils.h"
#include "MediaControlService.h"
#include "mozilla/dom/CanonicalBrowsingContext.h"
#include "mozilla/Logging.h"
#include "mozilla/StaticPrefs_media.h"
#undef LOG
#define LOG(msg, ...) \
MOZ_LOG(gMediaControlLog, LogLevel::Debug, \
("AudioFocusManager=%p, " msg, this, ##__VA_ARGS__))
namespace mozilla {
namespace dom {
void AudioFocusManager::RequestAudioFocus(MediaController* aController) {
MOZ_ASSERT(aController);
if (mOwningFocusControllers.Contains(aController)) {
return;
}
ClearFocusControllersIfNeeded();
LOG("Controller %" PRId64 " grants audio focus", aController->Id());
mOwningFocusControllers.AppendElement(aController);
}
void AudioFocusManager::RevokeAudioFocus(MediaController* aController) {
MOZ_ASSERT(aController);
if (!mOwningFocusControllers.Contains(aController)) {
return;
}
LOG("Controller %" PRId64 " loses audio focus", aController->Id());
mOwningFocusControllers.RemoveElement(aController);
}
void AudioFocusManager::ClearFocusControllersIfNeeded() {
// Enable audio focus management will start the audio competition which is
// only allowing one controller playing at a time.
if (!StaticPrefs::media_audioFocus_management()) {
return;
}
for (auto& controller : mOwningFocusControllers) {
LOG("Controller %" PRId64 " loses audio focus in audio competitition",
controller->Id());
controller->Stop();
}
mOwningFocusControllers.Clear();
}
uint32_t AudioFocusManager::GetAudioFocusNums() const {
return mOwningFocusControllers.Length();
}
} // namespace dom
} // namespace mozilla