mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
296 lines
7.7 KiB
C++
296 lines
7.7 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim:set ts=2 sw=2 sts=2 et cindent: */
|
|
/* 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 "MediaOmxCommonDecoder.h"
|
|
|
|
#include <stagefright/MediaSource.h>
|
|
|
|
#include "AudioOffloadPlayerBase.h"
|
|
#include "MediaDecoderStateMachine.h"
|
|
#include "MediaOmxCommonReader.h"
|
|
|
|
#ifdef MOZ_AUDIO_OFFLOAD
|
|
#include "AudioOffloadPlayer.h"
|
|
#endif
|
|
|
|
using namespace android;
|
|
|
|
namespace mozilla {
|
|
|
|
extern LazyLogModule gMediaDecoderLog;
|
|
#define DECODER_LOG(type, msg) MOZ_LOG(gMediaDecoderLog, type, msg)
|
|
|
|
MediaOmxCommonDecoder::MediaOmxCommonDecoder(MediaDecoderOwner* aOwner)
|
|
: MediaDecoder(aOwner)
|
|
, mReader(nullptr)
|
|
, mCanOffloadAudio(false)
|
|
, mFallbackToStateMachine(false)
|
|
, mIsCaptured(false)
|
|
{
|
|
mDormantSupported = true;
|
|
}
|
|
|
|
MediaOmxCommonDecoder::~MediaOmxCommonDecoder() {}
|
|
|
|
void
|
|
MediaOmxCommonDecoder::SetPlatformCanOffloadAudio(bool aCanOffloadAudio)
|
|
{
|
|
if (!aCanOffloadAudio) {
|
|
return;
|
|
}
|
|
|
|
// Stop MDSM from playing to avoid startup glitch (bug 1053186).
|
|
GetStateMachine()->DispatchAudioOffloading(true);
|
|
|
|
// Modify mCanOffloadAudio in the main thread.
|
|
RefPtr<MediaOmxCommonDecoder> self = this;
|
|
nsCOMPtr<nsIRunnable> r = NS_NewRunnableFunction([=] () {
|
|
self->mCanOffloadAudio = true;
|
|
});
|
|
AbstractThread::MainThread()->Dispatch(r.forget());
|
|
}
|
|
|
|
void
|
|
MediaOmxCommonDecoder::DisableStateMachineAudioOffloading()
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
if (mCanOffloadAudio) {
|
|
// mCanOffloadAudio is true implies we've called
|
|
// |GetStateMachine()->DispatchAudioOffloading(true)| in
|
|
// SetPlatformCanOffloadAudio(). We need to turn off audio offloading
|
|
// for MDSM so it can start playback.
|
|
GetStateMachine()->DispatchAudioOffloading(false);
|
|
}
|
|
}
|
|
|
|
bool
|
|
MediaOmxCommonDecoder::CheckDecoderCanOffloadAudio()
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
return (mCanOffloadAudio && !mFallbackToStateMachine &&
|
|
!mIsCaptured && mPlaybackRate == 1.0);
|
|
}
|
|
|
|
void
|
|
MediaOmxCommonDecoder::FirstFrameLoaded(nsAutoPtr<MediaInfo> aInfo,
|
|
MediaDecoderEventVisibility aEventVisibility)
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MediaDecoder::FirstFrameLoaded(aInfo, aEventVisibility);
|
|
|
|
if (!CheckDecoderCanOffloadAudio()) {
|
|
DECODER_LOG(LogLevel::Debug, ("In %s Offload Audio check failed",
|
|
__PRETTY_FUNCTION__));
|
|
DisableStateMachineAudioOffloading();
|
|
return;
|
|
}
|
|
|
|
#ifdef MOZ_AUDIO_OFFLOAD
|
|
mAudioOffloadPlayer = new AudioOffloadPlayer(this);
|
|
#endif
|
|
if (!mAudioOffloadPlayer) {
|
|
DisableStateMachineAudioOffloading();
|
|
return;
|
|
}
|
|
|
|
mAudioOffloadPlayer->SetSource(mReader->GetAudioOffloadTrack());
|
|
status_t err = mAudioOffloadPlayer->Start(false);
|
|
if (err != OK) {
|
|
mAudioOffloadPlayer = nullptr;
|
|
mFallbackToStateMachine = true;
|
|
DECODER_LOG(LogLevel::Debug, ("In %s Unable to start offload audio %d."
|
|
"Switching to normal mode", __PRETTY_FUNCTION__, err));
|
|
DisableStateMachineAudioOffloading();
|
|
return;
|
|
}
|
|
PauseStateMachine();
|
|
if (mLogicallySeeking) {
|
|
SeekTarget target = SeekTarget(mLogicalPosition,
|
|
SeekTarget::Accurate,
|
|
MediaDecoderEventVisibility::Observable);
|
|
mSeekRequest.DisconnectIfExists();
|
|
mSeekRequest.Begin(mAudioOffloadPlayer->Seek(target)
|
|
->Then(AbstractThread::MainThread(), __func__, static_cast<MediaDecoder*>(this),
|
|
&MediaDecoder::OnSeekResolved, &MediaDecoder::OnSeekRejected));
|
|
}
|
|
// Call ChangeState() to run AudioOffloadPlayer since offload state enabled
|
|
ChangeState(mPlayState);
|
|
}
|
|
|
|
void
|
|
MediaOmxCommonDecoder::PauseStateMachine()
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
DECODER_LOG(LogLevel::Debug, ("%s", __PRETTY_FUNCTION__));
|
|
|
|
if (mShuttingDown) {
|
|
return;
|
|
}
|
|
|
|
if (!GetStateMachine()) {
|
|
return;
|
|
}
|
|
// enter dormant state
|
|
GetStateMachine()->DispatchSetDormant(true);
|
|
}
|
|
|
|
void
|
|
MediaOmxCommonDecoder::ResumeStateMachine()
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
DECODER_LOG(LogLevel::Debug, ("%s current time %f", __PRETTY_FUNCTION__, mLogicalPosition));
|
|
|
|
if (mShuttingDown) {
|
|
return;
|
|
}
|
|
|
|
if (!GetStateMachine()) {
|
|
return;
|
|
}
|
|
|
|
GetStateMachine()->DispatchAudioOffloading(false);
|
|
|
|
mFallbackToStateMachine = true;
|
|
mAudioOffloadPlayer = nullptr;
|
|
SeekTarget target = SeekTarget(mLogicalPosition,
|
|
SeekTarget::Accurate,
|
|
MediaDecoderEventVisibility::Suppressed);
|
|
// Call Seek of MediaDecoderStateMachine to suppress seek events.
|
|
GetStateMachine()->InvokeSeek(target);
|
|
|
|
mNextState = mPlayState;
|
|
ChangeState(PLAY_STATE_LOADING);
|
|
// exit dormant state
|
|
GetStateMachine()->DispatchSetDormant(false);
|
|
UpdateLogicalPosition();
|
|
}
|
|
|
|
void
|
|
MediaOmxCommonDecoder::AudioOffloadTearDown()
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
DECODER_LOG(LogLevel::Debug, ("%s", __PRETTY_FUNCTION__));
|
|
|
|
// mAudioOffloadPlayer can be null here if ResumeStateMachine was called
|
|
// just before because of some other error.
|
|
if (mAudioOffloadPlayer) {
|
|
ResumeStateMachine();
|
|
}
|
|
}
|
|
|
|
void
|
|
MediaOmxCommonDecoder::AddOutputStream(ProcessedMediaStream* aStream,
|
|
bool aFinishWhenEnded)
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
mIsCaptured = true;
|
|
|
|
if (mAudioOffloadPlayer) {
|
|
ResumeStateMachine();
|
|
}
|
|
|
|
MediaDecoder::AddOutputStream(aStream, aFinishWhenEnded);
|
|
}
|
|
|
|
void
|
|
MediaOmxCommonDecoder::SetPlaybackRate(double aPlaybackRate)
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
if (mAudioOffloadPlayer &&
|
|
((aPlaybackRate != 0.0) || (aPlaybackRate != 1.0))) {
|
|
ResumeStateMachine();
|
|
}
|
|
|
|
MediaDecoder::SetPlaybackRate(aPlaybackRate);
|
|
}
|
|
|
|
void
|
|
MediaOmxCommonDecoder::ChangeState(PlayState aState)
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
// Keep MediaDecoder state in sync with MediaElement irrespective of offload
|
|
// playback so it will continue to work in normal mode when offloading fails
|
|
// in between
|
|
MediaDecoder::ChangeState(aState);
|
|
|
|
if (!mAudioOffloadPlayer) {
|
|
return;
|
|
}
|
|
|
|
status_t err = mAudioOffloadPlayer->ChangeState(aState);
|
|
if (err != OK) {
|
|
ResumeStateMachine();
|
|
return;
|
|
}
|
|
}
|
|
|
|
void
|
|
MediaOmxCommonDecoder::CallSeek(const SeekTarget& aTarget)
|
|
{
|
|
if (!mAudioOffloadPlayer) {
|
|
MediaDecoder::CallSeek(aTarget);
|
|
return;
|
|
}
|
|
|
|
mSeekRequest.DisconnectIfExists();
|
|
mSeekRequest.Begin(mAudioOffloadPlayer->Seek(aTarget)
|
|
->Then(AbstractThread::MainThread(), __func__, static_cast<MediaDecoder*>(this),
|
|
&MediaDecoder::OnSeekResolved, &MediaDecoder::OnSeekRejected));
|
|
}
|
|
|
|
int64_t
|
|
MediaOmxCommonDecoder::CurrentPosition()
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
if (!mAudioOffloadPlayer) {
|
|
return MediaDecoder::CurrentPosition();
|
|
}
|
|
return mAudioOffloadPlayer->GetMediaTimeUs();
|
|
}
|
|
|
|
void
|
|
MediaOmxCommonDecoder::SetElementVisibility(bool aIsVisible)
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
if (mAudioOffloadPlayer) {
|
|
mAudioOffloadPlayer->SetElementVisibility(aIsVisible);
|
|
}
|
|
}
|
|
|
|
MediaDecoderOwner::NextFrameStatus
|
|
MediaOmxCommonDecoder::NextFrameStatus()
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
return mAudioOffloadPlayer ? mAudioOffloadPlayer->GetNextFrameStatus()
|
|
: MediaDecoder::NextFrameStatus();
|
|
}
|
|
|
|
void
|
|
MediaOmxCommonDecoder::SetVolume(double aVolume)
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
if (!mAudioOffloadPlayer) {
|
|
MediaDecoder::SetVolume(aVolume);
|
|
return;
|
|
}
|
|
mAudioOffloadPlayer->SetVolume(aVolume);
|
|
}
|
|
|
|
MediaDecoderStateMachine*
|
|
MediaOmxCommonDecoder::CreateStateMachine()
|
|
{
|
|
mReader = CreateReader();
|
|
if (mReader != nullptr) {
|
|
mReader->SetAudioChannel(GetAudioChannel());
|
|
}
|
|
return CreateStateMachineFromReader(mReader);
|
|
}
|
|
|
|
} // namespace mozilla
|