зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1756260 - part2 : implement a new state machine for the external engine. r=jolin
This patch introduces a new type of state machine that is used when the playback is controlled by an external playback engine which would provide high level operations but hide most low level tasks from its client. Eg. Media Foundation Media Engine. The extenral engine should use events to communicate this state machine, and state machine should address those events in order to fullfill the need of the external engine. Differential Revision: https://phabricator.services.mozilla.com/D140014
This commit is contained in:
Родитель
2b0a067fdc
Коммит
71bcbbf669
|
@ -0,0 +1,835 @@
|
|||
/* 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 "ExternalEngineStateMachine.h"
|
||||
|
||||
#include "PerformanceRecorder.h"
|
||||
#include "mozilla/ProfilerLabels.h"
|
||||
|
||||
namespace mozilla {
|
||||
|
||||
extern LazyLogModule gMediaDecoderLog;
|
||||
|
||||
#define FMT(x, ...) \
|
||||
"Decoder=%p, State=%s, " x, mDecoderID, GetStateStr(), ##__VA_ARGS__
|
||||
#define LOG(x, ...) \
|
||||
DDMOZ_LOG(gMediaDecoderLog, LogLevel::Debug, "Decoder=%p, State=%s, " x, \
|
||||
mDecoderID, GetStateStr(), ##__VA_ARGS__)
|
||||
#define LOGV(x, ...) \
|
||||
DDMOZ_LOG(gMediaDecoderLog, LogLevel::Verbose, "Decoder=%p, State=%s, " x, \
|
||||
mDecoderID, GetStateStr(), ##__VA_ARGS__)
|
||||
#define LOGW(x, ...) NS_WARNING(nsPrintfCString(FMT(x, ##__VA_ARGS__)).get())
|
||||
#define LOGE(x, ...) \
|
||||
NS_DebugBreak(NS_DEBUG_WARNING, \
|
||||
nsPrintfCString(FMT(x, ##__VA_ARGS__)).get(), nullptr, \
|
||||
__FILE__, __LINE__)
|
||||
|
||||
const char* ExternalEngineEventToStr(ExternalEngineEvent aEvent) {
|
||||
#define EVENT_TO_STR(event) \
|
||||
case ExternalEngineEvent::event: \
|
||||
return #event
|
||||
switch (aEvent) {
|
||||
EVENT_TO_STR(LoadedMetaData);
|
||||
EVENT_TO_STR(LoadedFirstFrame);
|
||||
EVENT_TO_STR(LoadedData);
|
||||
EVENT_TO_STR(Waiting);
|
||||
EVENT_TO_STR(Playing);
|
||||
EVENT_TO_STR(Seeked);
|
||||
EVENT_TO_STR(BufferingStarted);
|
||||
EVENT_TO_STR(BufferingEnded);
|
||||
EVENT_TO_STR(Timeupdate);
|
||||
EVENT_TO_STR(Ended);
|
||||
EVENT_TO_STR(RequestForAudio);
|
||||
EVENT_TO_STR(RequestForVideo);
|
||||
EVENT_TO_STR(AudioEnough);
|
||||
EVENT_TO_STR(VideoEnough);
|
||||
default:
|
||||
MOZ_ASSERT_UNREACHABLE("Undefined event!");
|
||||
return "Undefined";
|
||||
}
|
||||
#undef EVENT_TO_STR
|
||||
}
|
||||
|
||||
/* static */
|
||||
const char* ExternalEngineStateMachine::StateToStr(State aState) {
|
||||
#define STATE_TO_STR(state) \
|
||||
case State::state: \
|
||||
return #state
|
||||
switch (aState) {
|
||||
STATE_TO_STR(InitEngine);
|
||||
STATE_TO_STR(WaitingMetadata);
|
||||
STATE_TO_STR(RunningEngine);
|
||||
STATE_TO_STR(SeekingData);
|
||||
STATE_TO_STR(ShutdownEngine);
|
||||
default:
|
||||
MOZ_ASSERT_UNREACHABLE("Undefined state!");
|
||||
return "Undefined";
|
||||
}
|
||||
#undef STATE_TO_STR
|
||||
}
|
||||
|
||||
const char* ExternalEngineStateMachine::GetStateStr() const {
|
||||
return StateToStr(mState);
|
||||
}
|
||||
|
||||
ExternalEngineStateMachine::ExternalEngineStateMachine(
|
||||
MediaDecoder* aDecoder, MediaFormatReader* aReader)
|
||||
: MediaDecoderStateMachineBase(aDecoder, aReader),
|
||||
mState(State::InitEngine) {
|
||||
LOG("Created ExternalEngineStateMachine");
|
||||
// TODO : create the engine in following patch.
|
||||
if (mEngine) {
|
||||
mEngine->Init(!mMinimizePreroll)
|
||||
->Then(OwnerThread(), __func__, this,
|
||||
&ExternalEngineStateMachine::OnEngineInitSuccess,
|
||||
&ExternalEngineStateMachine::OnEngineInitFailure)
|
||||
->Track(mEngineInitRequest);
|
||||
} else {
|
||||
ShutdownInternal();
|
||||
}
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::OnEngineInitSuccess() {
|
||||
AssertOnTaskQueue();
|
||||
AUTO_PROFILER_LABEL("ExternalEngineStateMachine::OnEngineInitSuccess",
|
||||
MEDIA_PLAYBACK);
|
||||
LOG("Initialized the external playback engine %" PRIu64
|
||||
", start reading metadata",
|
||||
mEngine->Id());
|
||||
mEngineInitRequest.Complete();
|
||||
ChangeStateTo(State::WaitingMetadata);
|
||||
// TODO : assign engine ID to reader following patch.
|
||||
mReader->ReadMetadata()
|
||||
->Then(OwnerThread(), __func__, this,
|
||||
&ExternalEngineStateMachine::OnMetadataRead,
|
||||
&ExternalEngineStateMachine::OnMetadataNotRead)
|
||||
->Track(mMetadataRequest);
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::OnEngineInitFailure() {
|
||||
AssertOnTaskQueue();
|
||||
LOGE("Failed to initialize the external playback engine");
|
||||
mEngineInitRequest.Complete();
|
||||
// TODO : Should fallback to the normal playback with media engine.
|
||||
DecodeError(MediaResult(NS_ERROR_DOM_MEDIA_FATAL_ERR, __func__));
|
||||
ShutdownInternal();
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::ChangeStateTo(State aState) {
|
||||
LOG("Change state : '%s' -> '%s'", StateToStr(mState), StateToStr(aState));
|
||||
// Assert the possible state transitions.
|
||||
MOZ_ASSERT_IF(
|
||||
mState == State::InitEngine,
|
||||
aState == State::WaitingMetadata || aState == State::ShutdownEngine);
|
||||
MOZ_ASSERT_IF(
|
||||
mState == State::WaitingMetadata,
|
||||
aState == State::RunningEngine || aState == State::ShutdownEngine);
|
||||
MOZ_ASSERT_IF(
|
||||
mState == State::RunningEngine,
|
||||
aState == State::SeekingData || aState == State::ShutdownEngine);
|
||||
MOZ_ASSERT_IF(mState == State::SeekingData,
|
||||
aState == State::SeekingData ||
|
||||
aState == State::RunningEngine ||
|
||||
aState == State::ShutdownEngine);
|
||||
MOZ_ASSERT_IF(mState == State::ShutdownEngine,
|
||||
aState == State::ShutdownEngine);
|
||||
mState = aState;
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::OnMetadataRead(MetadataHolder&& aMetadata) {
|
||||
AssertOnTaskQueue();
|
||||
LOG("OnMetadataRead");
|
||||
AUTO_PROFILER_LABEL("ExternalEngineStateMachine::OnMetadataRead",
|
||||
MEDIA_PLAYBACK);
|
||||
MOZ_ASSERT(mState == State::WaitingMetadata);
|
||||
|
||||
mMetadataRequest.Complete();
|
||||
mInfo.emplace(*aMetadata.mInfo);
|
||||
mMediaSeekable = Info().mMediaSeekable;
|
||||
mMediaSeekableOnlyInBufferedRanges =
|
||||
Info().mMediaSeekableOnlyInBufferedRanges;
|
||||
|
||||
mEngine->SetMediaInfo(*mInfo);
|
||||
|
||||
if (Info().mMetadataDuration.isSome()) {
|
||||
mDuration = Info().mMetadataDuration;
|
||||
} else if (Info().mUnadjustedMetadataEndTime.isSome()) {
|
||||
const TimeUnit unadjusted = Info().mUnadjustedMetadataEndTime.ref();
|
||||
const TimeUnit adjustment = Info().mStartTime;
|
||||
mInfo->mMetadataDuration.emplace(unadjusted - adjustment);
|
||||
mDuration = Info().mMetadataDuration;
|
||||
}
|
||||
|
||||
// If we don't know the duration by this point, we assume infinity, per spec.
|
||||
if (mDuration.Ref().isNothing()) {
|
||||
mDuration = Some(TimeUnit::FromInfinity());
|
||||
}
|
||||
|
||||
MOZ_ASSERT(mDuration.Ref().isSome());
|
||||
|
||||
mMetadataLoadedEvent.Notify(std::move(aMetadata.mInfo),
|
||||
std::move(aMetadata.mTags),
|
||||
MediaDecoderEventVisibility::Observable);
|
||||
StartRunningEngine();
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::OnMetadataNotRead(const MediaResult& aError) {
|
||||
AssertOnTaskQueue();
|
||||
MOZ_ASSERT(mState == State::WaitingMetadata);
|
||||
LOGE("Decode metadata failed, shutting down decoder");
|
||||
mMetadataRequest.Complete();
|
||||
DecodeError(aError);
|
||||
}
|
||||
|
||||
RefPtr<MediaDecoder::SeekPromise> ExternalEngineStateMachine::Seek(
|
||||
const SeekTarget& aTarget) {
|
||||
AssertOnTaskQueue();
|
||||
if (mState != State::RunningEngine && mState != State::SeekingData) {
|
||||
MOZ_ASSERT(false, "Can't seek due to unsupported state.");
|
||||
return MediaDecoder::SeekPromise::CreateAndReject(true, __func__);
|
||||
}
|
||||
// We don't support these type of seek, because they're depending on the
|
||||
// implementation of the external engine, which might not be supported.
|
||||
if (aTarget.IsNextFrame() || aTarget.IsVideoOnly()) {
|
||||
return MediaDecoder::SeekPromise::CreateAndReject(true, __func__);
|
||||
}
|
||||
|
||||
// If there is any promise for previous seeking, reject it first.
|
||||
if (mSeekJob) {
|
||||
mSeekJob->RejectIfExists(__func__);
|
||||
mSeekRequest.DisconnectIfExists();
|
||||
}
|
||||
mSeekJob = Some(SeekJob());
|
||||
mSeekJob->mTarget = Some(aTarget);
|
||||
|
||||
LOG("Start seeking to %" PRId64, aTarget.GetTime().ToMicroseconds());
|
||||
ChangeStateTo(State::SeekingData);
|
||||
|
||||
// Update related status.
|
||||
mSentPlaybackEndedEvent = false;
|
||||
mOnPlaybackEvent.Notify(MediaPlaybackEvent::SeekStarted);
|
||||
mOnNextFrameStatus.Notify(MediaDecoderOwner::NEXT_FRAME_UNAVAILABLE_SEEKING);
|
||||
|
||||
// Notify the external playback engine about seeking. After the engine changes
|
||||
// its current time, it would send `seeked` event.
|
||||
mEngine->Seek(aTarget.GetTime());
|
||||
mWaitingEngineSeekedEvent = true;
|
||||
SeekReader();
|
||||
return mSeekJob->mPromise.Ensure(__func__);
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::SeekReader() {
|
||||
AssertOnTaskQueue();
|
||||
// Reset the reader first and ask it to perform a demuxer seek.
|
||||
ResetDecode();
|
||||
mIsReaderSeekingCompleted = false;
|
||||
LOG("Seek reader to %" PRId64, mSeekJob->mTarget->GetTime().ToMicroseconds());
|
||||
mReader->Seek(mSeekJob->mTarget.ref())
|
||||
->Then(OwnerThread(), __func__, this,
|
||||
&ExternalEngineStateMachine::OnSeekResolved,
|
||||
&ExternalEngineStateMachine::OnSeekRejected)
|
||||
->Track(mSeekRequest);
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::OnSeekResolved(const media::TimeUnit& aUnit) {
|
||||
AUTO_PROFILER_LABEL("ExternalEngineStateMachine::OnSeekResolved",
|
||||
MEDIA_PLAYBACK);
|
||||
AssertOnTaskQueue();
|
||||
MOZ_ASSERT(mState == State::SeekingData);
|
||||
|
||||
LOG("OnSeekResolved");
|
||||
mSeekRequest.Complete();
|
||||
mIsReaderSeekingCompleted = true;
|
||||
|
||||
// Start sending new data to the external playback engine.
|
||||
if (HasAudio()) {
|
||||
mHasEnoughAudio = false;
|
||||
OnRequestAudio();
|
||||
}
|
||||
if (HasVideo()) {
|
||||
mHasEnoughVideo = false;
|
||||
OnRequestVideo();
|
||||
}
|
||||
CheckIfSeekCompleted();
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::OnSeekRejected(
|
||||
const SeekRejectValue& aReject) {
|
||||
AUTO_PROFILER_LABEL("ExternalEngineStateMachine::OnSeekRejected",
|
||||
MEDIA_PLAYBACK);
|
||||
AssertOnTaskQueue();
|
||||
MOZ_ASSERT(mState == State::SeekingData);
|
||||
|
||||
LOG("OnSeekRejected");
|
||||
mSeekRequest.Complete();
|
||||
if (aReject.mError == NS_ERROR_DOM_MEDIA_WAITING_FOR_DATA) {
|
||||
LOG("OnSeekRejected reason=WAITING_FOR_DATA type=%s",
|
||||
MediaData::TypeToStr(aReject.mType));
|
||||
MOZ_ASSERT_IF(aReject.mType == MediaData::Type::AUDIO_DATA,
|
||||
!IsRequestingAudioData());
|
||||
MOZ_ASSERT_IF(aReject.mType == MediaData::Type::VIDEO_DATA,
|
||||
!IsRequestingVideoData());
|
||||
MOZ_ASSERT_IF(aReject.mType == MediaData::Type::AUDIO_DATA,
|
||||
!IsWaitingAudioData());
|
||||
MOZ_ASSERT_IF(aReject.mType == MediaData::Type::VIDEO_DATA,
|
||||
!IsWaitingVideoData());
|
||||
|
||||
// Fire 'waiting' to notify the player that we are waiting for data.
|
||||
mOnNextFrameStatus.Notify(
|
||||
MediaDecoderOwner::NEXT_FRAME_UNAVAILABLE_SEEKING);
|
||||
WaitForData(aReject.mType);
|
||||
return;
|
||||
}
|
||||
|
||||
if (aReject.mError == NS_ERROR_DOM_MEDIA_END_OF_STREAM) {
|
||||
EndOfStream(aReject.mType);
|
||||
return;
|
||||
}
|
||||
|
||||
MOZ_ASSERT(NS_FAILED(aReject.mError),
|
||||
"Cancels should also disconnect mSeekRequest");
|
||||
MOZ_ASSERT(mSeekJob && mSeekJob->Exists(),
|
||||
"Reject seeking without a seek job?");
|
||||
mSeekJob->RejectIfExists(__func__);
|
||||
DecodeError(aReject.mError);
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::CheckIfSeekCompleted() {
|
||||
AssertOnTaskQueue();
|
||||
MOZ_ASSERT(mState == State::SeekingData);
|
||||
|
||||
if (mWaitingEngineSeekedEvent || !mIsReaderSeekingCompleted) {
|
||||
LOG("Seek hasn't been completed yet, waitEngineSeeked=%d, "
|
||||
"waitReaderSeeked=%d",
|
||||
mWaitingEngineSeekedEvent, !mIsReaderSeekingCompleted);
|
||||
return;
|
||||
}
|
||||
|
||||
MOZ_ASSERT(mSeekJob && mSeekJob->Exists(),
|
||||
"Completed seeking without a seek job?");
|
||||
LOG("Seek completed");
|
||||
mSeekJob->Resolve(__func__);
|
||||
mOnPlaybackEvent.Notify(MediaPlaybackEvent::Invalidate);
|
||||
mOnNextFrameStatus.Notify(MediaDecoderOwner::NEXT_FRAME_AVAILABLE);
|
||||
StartRunningEngine();
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::ResetDecode() {
|
||||
AssertOnTaskQueue();
|
||||
if (!mInfo) {
|
||||
return;
|
||||
}
|
||||
|
||||
LOG("ResetDecode");
|
||||
MediaFormatReader::TrackSet tracks;
|
||||
if (HasVideo()) {
|
||||
mVideoDataRequest.DisconnectIfExists();
|
||||
mVideoWaitRequest.DisconnectIfExists();
|
||||
tracks += TrackInfo::kVideoTrack;
|
||||
}
|
||||
if (HasAudio()) {
|
||||
mAudioDataRequest.DisconnectIfExists();
|
||||
mAudioWaitRequest.DisconnectIfExists();
|
||||
tracks += TrackInfo::kAudioTrack;
|
||||
}
|
||||
mReader->ResetDecode(tracks);
|
||||
}
|
||||
|
||||
RefPtr<GenericPromise> ExternalEngineStateMachine::InvokeSetSink(
|
||||
const RefPtr<AudioDeviceInfo>& aSink) {
|
||||
MOZ_ASSERT(NS_IsMainThread());
|
||||
// TODO : can media engine support this?
|
||||
return GenericPromise::CreateAndReject(NS_ERROR_FAILURE, __func__);
|
||||
}
|
||||
|
||||
RefPtr<ShutdownPromise> ExternalEngineStateMachine::Shutdown() {
|
||||
AssertOnTaskQueue();
|
||||
LOG("Shutdown");
|
||||
return ShutdownInternal();
|
||||
}
|
||||
|
||||
RefPtr<ShutdownPromise> ExternalEngineStateMachine::ShutdownInternal() {
|
||||
AssertOnTaskQueue();
|
||||
|
||||
LOG("ShutdownInternal");
|
||||
ChangeStateTo(State::ShutdownEngine);
|
||||
ResetDecode();
|
||||
|
||||
mEngineInitRequest.DisconnectIfExists();
|
||||
mMetadataRequest.DisconnectIfExists();
|
||||
mSeekRequest.DisconnectIfExists();
|
||||
mAudioDataRequest.DisconnectIfExists();
|
||||
mVideoDataRequest.DisconnectIfExists();
|
||||
mAudioWaitRequest.DisconnectIfExists();
|
||||
mVideoWaitRequest.DisconnectIfExists();
|
||||
mBuffered.DisconnectIfConnected();
|
||||
mPlayState.DisconnectIfConnected();
|
||||
mVolume.DisconnectIfConnected();
|
||||
mPreservesPitch.DisconnectIfConnected();
|
||||
mLooping.DisconnectIfConnected();
|
||||
mDuration.DisconnectAll();
|
||||
mCurrentPosition.DisconnectAll();
|
||||
// TODO : implement audible check
|
||||
mIsAudioDataAudible.DisconnectAll();
|
||||
|
||||
mMetadataManager.Disconnect();
|
||||
|
||||
mEngine->Shutdown();
|
||||
return mReader->Shutdown()->Then(
|
||||
OwnerThread(), __func__, [self = RefPtr{this}, this]() {
|
||||
LOG("Shutting down state machine task queue");
|
||||
return OwnerThread()->BeginShutdown();
|
||||
});
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::SetPlaybackRate(double aPlaybackRate) {
|
||||
AssertOnTaskQueue();
|
||||
mEngine->SetVolume(aPlaybackRate);
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::BufferedRangeUpdated() {
|
||||
AssertOnTaskQueue();
|
||||
AUTO_PROFILER_LABEL("ExternalEngineStateMachine::BufferedRangeUpdated",
|
||||
MEDIA_PLAYBACK);
|
||||
|
||||
// While playing an unseekable stream of unknown duration, mDuration
|
||||
// is updated as we play. But if data is being downloaded
|
||||
// faster than played, mDuration won't reflect the end of playable data
|
||||
// since we haven't played the frame at the end of buffered data. So update
|
||||
// mDuration here as new data is downloaded to prevent such a lag.
|
||||
if (mBuffered.Ref().IsInvalid()) {
|
||||
return;
|
||||
}
|
||||
|
||||
bool exists;
|
||||
media::TimeUnit end{mBuffered.Ref().GetEnd(&exists)};
|
||||
if (!exists) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Use estimated duration from buffer ranges when mDuration is unknown or
|
||||
// the estimated duration is larger.
|
||||
if (mDuration.Ref().isNothing() || mDuration.Ref()->IsInfinite() ||
|
||||
end > mDuration.Ref().ref()) {
|
||||
mDuration = Some(end);
|
||||
DDLOG(DDLogCategory::Property, "duration_us",
|
||||
mDuration.Ref()->ToMicroseconds());
|
||||
}
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::VolumeChanged() {
|
||||
AssertOnTaskQueue();
|
||||
mEngine->SetVolume(mVolume);
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::PreservesPitchChanged() {
|
||||
AssertOnTaskQueue();
|
||||
mEngine->SetPreservesPitch(mPreservesPitch);
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::PlayStateChanged() {
|
||||
AssertOnTaskQueue();
|
||||
if (mPlayState == MediaDecoder::PLAY_STATE_PLAYING) {
|
||||
mEngine->Play();
|
||||
} else if (mPlayState == MediaDecoder::PLAY_STATE_PAUSED) {
|
||||
mEngine->Pause();
|
||||
}
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::LoopingChanged() {
|
||||
AssertOnTaskQueue();
|
||||
mEngine->SetLooping(mLooping);
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::EndOfStream(MediaData::Type aType) {
|
||||
AssertOnTaskQueue();
|
||||
MOZ_ASSERT(mState.IsRunningEngine() || mState.IsSeekingData());
|
||||
static auto DataTypeToTrackType = [](const MediaData::Type& aType) {
|
||||
if (aType == MediaData::Type::VIDEO_DATA) {
|
||||
return TrackInfo::TrackType::kVideoTrack;
|
||||
}
|
||||
if (aType == MediaData::Type::AUDIO_DATA) {
|
||||
return TrackInfo::TrackType::kAudioTrack;
|
||||
}
|
||||
return TrackInfo::TrackType::kUndefinedTrack;
|
||||
};
|
||||
mEngine->NotifyEndOfStream(DataTypeToTrackType(aType));
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::WaitForData(MediaData::Type aType) {
|
||||
AssertOnTaskQueue();
|
||||
AUTO_PROFILER_LABEL("ExternalEngineStateMachine::WaitForData",
|
||||
MEDIA_PLAYBACK);
|
||||
MOZ_ASSERT(aType == MediaData::Type::AUDIO_DATA ||
|
||||
aType == MediaData::Type::VIDEO_DATA);
|
||||
|
||||
LOG("WaitForData");
|
||||
RefPtr<ExternalEngineStateMachine> self = this;
|
||||
if (aType == MediaData::Type::AUDIO_DATA) {
|
||||
MOZ_ASSERT(HasAudio());
|
||||
mReader->WaitForData(MediaData::Type::AUDIO_DATA)
|
||||
->Then(
|
||||
OwnerThread(), __func__,
|
||||
[self, this](MediaData::Type aType) {
|
||||
AUTO_PROFILER_LABEL(
|
||||
"ExternalEngineStateMachine::WaitForData:AudioResolved",
|
||||
MEDIA_PLAYBACK);
|
||||
MOZ_ASSERT(aType == MediaData::Type::AUDIO_DATA);
|
||||
LOG("Done waiting for audio data");
|
||||
mAudioWaitRequest.Complete();
|
||||
MaybeFinishWaitForData();
|
||||
},
|
||||
[self, this](const WaitForDataRejectValue& aRejection) {
|
||||
AUTO_PROFILER_LABEL(
|
||||
"ExternalEngineStateMachine::WaitForData:AudioRejected",
|
||||
MEDIA_PLAYBACK);
|
||||
mAudioWaitRequest.Complete();
|
||||
DecodeError(NS_ERROR_DOM_MEDIA_WAITING_FOR_DATA);
|
||||
})
|
||||
->Track(mAudioWaitRequest);
|
||||
} else {
|
||||
MOZ_ASSERT(HasVideo());
|
||||
mReader->WaitForData(MediaData::Type::VIDEO_DATA)
|
||||
->Then(
|
||||
OwnerThread(), __func__,
|
||||
[self, this](MediaData::Type aType) {
|
||||
AUTO_PROFILER_LABEL(
|
||||
"ExternalEngineStateMachine::WaitForData:VideoResolved",
|
||||
MEDIA_PLAYBACK);
|
||||
MOZ_ASSERT(aType == MediaData::Type::VIDEO_DATA);
|
||||
LOG("Done waiting for video data");
|
||||
mVideoWaitRequest.Complete();
|
||||
MaybeFinishWaitForData();
|
||||
},
|
||||
[self, this](const WaitForDataRejectValue& aRejection) {
|
||||
AUTO_PROFILER_LABEL(
|
||||
"ExternalEngineStateMachine::WaitForData:VideoRejected",
|
||||
MEDIA_PLAYBACK);
|
||||
mVideoWaitRequest.Complete();
|
||||
DecodeError(NS_ERROR_DOM_MEDIA_WAITING_FOR_DATA);
|
||||
})
|
||||
->Track(mVideoWaitRequest);
|
||||
}
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::MaybeFinishWaitForData() {
|
||||
AssertOnTaskQueue();
|
||||
bool isWaitingForAudio = HasAudio() && mAudioWaitRequest.Exists();
|
||||
bool isWaitingForVideo = HasVideo() && mVideoWaitRequest.Exists();
|
||||
if (isWaitingForAudio || isWaitingForVideo) {
|
||||
LOG("Still waiting for data (waitAudio=%d, waitVideo=%d)",
|
||||
isWaitingForAudio, isWaitingForVideo);
|
||||
return;
|
||||
}
|
||||
|
||||
LOG("Finished waiting for data");
|
||||
if (mState == State::SeekingData) {
|
||||
SeekReader();
|
||||
return;
|
||||
}
|
||||
|
||||
MOZ_ASSERT(mState == State::RunningEngine);
|
||||
if (HasAudio()) {
|
||||
RunningEngineUpdate(MediaData::Type::AUDIO_DATA);
|
||||
}
|
||||
if (HasVideo()) {
|
||||
RunningEngineUpdate(MediaData::Type::VIDEO_DATA);
|
||||
}
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::StartRunningEngine() {
|
||||
ChangeStateTo(State::RunningEngine);
|
||||
if (HasAudio()) {
|
||||
RunningEngineUpdate(MediaData::Type::AUDIO_DATA);
|
||||
}
|
||||
if (HasVideo()) {
|
||||
RunningEngineUpdate(MediaData::Type::VIDEO_DATA);
|
||||
}
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::RunningEngineUpdate(MediaData::Type aType) {
|
||||
AssertOnTaskQueue();
|
||||
MOZ_ASSERT(mState == State::RunningEngine || mState == State::SeekingData);
|
||||
LOG("RunningEngineUpdate");
|
||||
if (aType == MediaData::Type::AUDIO_DATA && !mHasEnoughAudio) {
|
||||
OnRequestAudio();
|
||||
}
|
||||
if (aType == MediaData::Type::VIDEO_DATA && !mHasEnoughVideo) {
|
||||
OnRequestVideo();
|
||||
}
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::OnRequestAudio() {
|
||||
AssertOnTaskQueue();
|
||||
AUTO_PROFILER_LABEL("ExternalEngineStateMachine::OnRequestAudio",
|
||||
MEDIA_PLAYBACK);
|
||||
MOZ_ASSERT(mState == State::RunningEngine || mState == State::SeekingData);
|
||||
LOGV("OnRequestAudio");
|
||||
|
||||
if (!HasAudio()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (IsRequestingAudioData() || mAudioWaitRequest.Exists() ||
|
||||
mSeekRequest.Exists()) {
|
||||
LOGV(
|
||||
"No need to request audio, isRequesting=%d, waitingAudio=%d, "
|
||||
"isSeeking=%d",
|
||||
IsRequestingAudioData(), mAudioWaitRequest.Exists(),
|
||||
mSeekRequest.Exists());
|
||||
return;
|
||||
}
|
||||
|
||||
LOGV("Start requesting audio");
|
||||
PerformanceRecorder perfRecorder(PerformanceRecorder::Stage::RequestData);
|
||||
perfRecorder.Start();
|
||||
RefPtr<ExternalEngineStateMachine> self = this;
|
||||
mReader->RequestAudioData()
|
||||
->Then(
|
||||
OwnerThread(), __func__,
|
||||
[this, self, perfRecorder(std::move(perfRecorder))](
|
||||
const RefPtr<AudioData>& aAudio) mutable {
|
||||
perfRecorder.End();
|
||||
mAudioDataRequest.Complete();
|
||||
LOGV("Completed requesting audio");
|
||||
AUTO_PROFILER_LABEL(
|
||||
"ExternalEngineStateMachine::OnRequestAudio:Resolved",
|
||||
MEDIA_PLAYBACK);
|
||||
MOZ_ASSERT(aAudio);
|
||||
RunningEngineUpdate(MediaData::Type::AUDIO_DATA);
|
||||
},
|
||||
[this, self](const MediaResult& aError) {
|
||||
mAudioDataRequest.Complete();
|
||||
AUTO_PROFILER_LABEL(
|
||||
"ExternalEngineStateMachine::OnRequestAudio:Rejected",
|
||||
MEDIA_PLAYBACK);
|
||||
LOG("OnRequestAudio ErrorName=%s Message=%s",
|
||||
aError.ErrorName().get(), aError.Message().get());
|
||||
switch (aError.Code()) {
|
||||
case NS_ERROR_DOM_MEDIA_WAITING_FOR_DATA:
|
||||
WaitForData(MediaData::Type::AUDIO_DATA);
|
||||
break;
|
||||
case NS_ERROR_DOM_MEDIA_CANCELED:
|
||||
OnRequestAudio();
|
||||
break;
|
||||
case NS_ERROR_DOM_MEDIA_END_OF_STREAM:
|
||||
LOG("Reach to the end, no more audio data");
|
||||
EndOfStream(MediaData::Type::AUDIO_DATA);
|
||||
break;
|
||||
default:
|
||||
DecodeError(aError);
|
||||
}
|
||||
})
|
||||
->Track(mAudioDataRequest);
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::OnRequestVideo() {
|
||||
AssertOnTaskQueue();
|
||||
AUTO_PROFILER_LABEL("ExternalEngineStateMachine::OnRequestVideo",
|
||||
MEDIA_PLAYBACK);
|
||||
MOZ_ASSERT(mState == State::RunningEngine || mState == State::SeekingData);
|
||||
LOGV("OnRequestVideo");
|
||||
|
||||
if (!HasVideo()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (IsRequestingVideoData() || mVideoWaitRequest.Exists() ||
|
||||
mSeekRequest.Exists()) {
|
||||
LOGV(
|
||||
"No need to request video, isRequesting=%d, waitingVideo=%d, "
|
||||
"isSeeking=%d",
|
||||
IsRequestingVideoData(), mVideoWaitRequest.Exists(),
|
||||
mSeekRequest.Exists());
|
||||
return;
|
||||
}
|
||||
|
||||
LOGV("Start requesting video");
|
||||
PerformanceRecorder perfRecorder(PerformanceRecorder::Stage::RequestData,
|
||||
Info().mVideo.mImage.height);
|
||||
perfRecorder.Start();
|
||||
RefPtr<ExternalEngineStateMachine> self = this;
|
||||
mReader->RequestVideoData(mCurrentPosition.Ref(), false)
|
||||
->Then(
|
||||
OwnerThread(), __func__,
|
||||
[this, self, perfRecorder(std::move(perfRecorder))](
|
||||
const RefPtr<VideoData>& aVideo) mutable {
|
||||
perfRecorder.End();
|
||||
mVideoDataRequest.Complete();
|
||||
LOGV("Completed requesting video");
|
||||
AUTO_PROFILER_LABEL(
|
||||
"ExternalEngineStateMachine::OnRequestVideo:Resolved",
|
||||
MEDIA_PLAYBACK);
|
||||
MOZ_ASSERT(aVideo);
|
||||
RunningEngineUpdate(MediaData::Type::VIDEO_DATA);
|
||||
// TODO : set video into video container? Will implement this when
|
||||
// starting implementing the video output for the media engine.
|
||||
},
|
||||
[this, self](const MediaResult& aError) {
|
||||
mVideoDataRequest.Complete();
|
||||
AUTO_PROFILER_LABEL(
|
||||
"ExternalEngineStateMachine::OnRequestVideo:Rejected",
|
||||
MEDIA_PLAYBACK);
|
||||
LOG("OnRequestVideo ErrorName=%s Message=%s",
|
||||
aError.ErrorName().get(), aError.Message().get());
|
||||
switch (aError.Code()) {
|
||||
case NS_ERROR_DOM_MEDIA_WAITING_FOR_DATA:
|
||||
WaitForData(MediaData::Type::VIDEO_DATA);
|
||||
break;
|
||||
case NS_ERROR_DOM_MEDIA_CANCELED:
|
||||
OnRequestVideo();
|
||||
break;
|
||||
case NS_ERROR_DOM_MEDIA_END_OF_STREAM:
|
||||
LOG("Reach to the end, no more video data");
|
||||
EndOfStream(MediaData::Type::VIDEO_DATA);
|
||||
break;
|
||||
default:
|
||||
DecodeError(aError);
|
||||
}
|
||||
})
|
||||
->Track(mVideoDataRequest);
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::OnLoadedFirstFrame() {
|
||||
AssertOnTaskQueue();
|
||||
MediaDecoderEventVisibility visibility =
|
||||
mSentFirstFrameLoadedEvent ? MediaDecoderEventVisibility::Suppressed
|
||||
: MediaDecoderEventVisibility::Observable;
|
||||
mSentFirstFrameLoadedEvent = true;
|
||||
mFirstFrameLoadedEvent.Notify(UniquePtr<MediaInfo>(new MediaInfo(Info())),
|
||||
visibility);
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::OnLoadedData() {
|
||||
AssertOnTaskQueue();
|
||||
// In case the external engine doesn't send the first frame loaded event
|
||||
// correctly.
|
||||
if (!mSentFirstFrameLoadedEvent) {
|
||||
OnLoadedFirstFrame();
|
||||
}
|
||||
mOnNextFrameStatus.Notify(MediaDecoderOwner::NEXT_FRAME_AVAILABLE);
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::OnWaiting() {
|
||||
AssertOnTaskQueue();
|
||||
mOnNextFrameStatus.Notify(
|
||||
MediaDecoderOwner::NEXT_FRAME_UNAVAILABLE_BUFFERING);
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::OnPlaying() {
|
||||
AssertOnTaskQueue();
|
||||
mOnNextFrameStatus.Notify(MediaDecoderOwner::NEXT_FRAME_AVAILABLE);
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::OnSeeked() {
|
||||
AssertOnTaskQueue();
|
||||
// Engine's event could arrive before finishing reader's seeking.
|
||||
mWaitingEngineSeekedEvent = false;
|
||||
CheckIfSeekCompleted();
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::OnBufferingStarted() {
|
||||
AssertOnTaskQueue();
|
||||
mOnNextFrameStatus.Notify(
|
||||
MediaDecoderOwner::NEXT_FRAME_UNAVAILABLE_BUFFERING);
|
||||
if (HasAudio()) {
|
||||
WaitForData(MediaData::Type::AUDIO_DATA);
|
||||
}
|
||||
if (HasVideo()) {
|
||||
WaitForData(MediaData::Type::VIDEO_DATA);
|
||||
}
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::OnBufferingEnded() {
|
||||
AssertOnTaskQueue();
|
||||
mOnNextFrameStatus.Notify(MediaDecoderOwner::NEXT_FRAME_AVAILABLE);
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::OnEnded() {
|
||||
AssertOnTaskQueue();
|
||||
if (mSentPlaybackEndedEvent) {
|
||||
return;
|
||||
}
|
||||
LOG("Playback is ended");
|
||||
mOnNextFrameStatus.Notify(MediaDecoderOwner::NEXT_FRAME_UNAVAILABLE);
|
||||
mOnPlaybackEvent.Notify(MediaPlaybackEvent::PlaybackEnded);
|
||||
mSentPlaybackEndedEvent = true;
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::OnTimeupdate() {
|
||||
AssertOnTaskQueue();
|
||||
if (IsSeeking()) {
|
||||
return;
|
||||
}
|
||||
mCurrentPosition = mEngine->GetCurrentPosition();
|
||||
if (mDuration.Ref().ref() < mCurrentPosition.Ref()) {
|
||||
mDuration = Some(mCurrentPosition.Ref());
|
||||
}
|
||||
}
|
||||
|
||||
void ExternalEngineStateMachine::NotifyEventInternal(
|
||||
ExternalEngineEvent aEvent) {
|
||||
AssertOnTaskQueue();
|
||||
AUTO_PROFILER_LABEL("ExternalEngineStateMachine::NotifyEventInternal",
|
||||
MEDIA_PLAYBACK);
|
||||
LOG("Receive event %s", ExternalEngineEventToStr(aEvent));
|
||||
switch (aEvent) {
|
||||
case ExternalEngineEvent::LoadedMetaData:
|
||||
// We read metadata by ourselves, ignore this if there is any.
|
||||
MOZ_ASSERT(mInfo);
|
||||
break;
|
||||
case ExternalEngineEvent::LoadedFirstFrame:
|
||||
OnLoadedFirstFrame();
|
||||
break;
|
||||
case ExternalEngineEvent::LoadedData:
|
||||
OnLoadedData();
|
||||
break;
|
||||
case ExternalEngineEvent::Waiting:
|
||||
OnWaiting();
|
||||
break;
|
||||
case ExternalEngineEvent::Playing:
|
||||
OnPlaying();
|
||||
break;
|
||||
case ExternalEngineEvent::Seeked:
|
||||
OnSeeked();
|
||||
break;
|
||||
case ExternalEngineEvent::BufferingStarted:
|
||||
OnBufferingStarted();
|
||||
break;
|
||||
case ExternalEngineEvent::BufferingEnded:
|
||||
OnBufferingEnded();
|
||||
break;
|
||||
case ExternalEngineEvent::Timeupdate:
|
||||
OnTimeupdate();
|
||||
break;
|
||||
case ExternalEngineEvent::Ended:
|
||||
OnEnded();
|
||||
break;
|
||||
case ExternalEngineEvent::RequestForAudio:
|
||||
mHasEnoughAudio = false;
|
||||
RunningEngineUpdate(MediaData::Type::AUDIO_DATA);
|
||||
break;
|
||||
case ExternalEngineEvent::RequestForVideo:
|
||||
mHasEnoughVideo = false;
|
||||
RunningEngineUpdate(MediaData::Type::VIDEO_DATA);
|
||||
break;
|
||||
case ExternalEngineEvent::AudioEnough:
|
||||
mHasEnoughAudio = true;
|
||||
break;
|
||||
case ExternalEngineEvent::VideoEnough:
|
||||
mHasEnoughVideo = true;
|
||||
break;
|
||||
default:
|
||||
MOZ_ASSERT_UNREACHABLE("Undefined event!");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
#undef FMT
|
||||
#undef LOG
|
||||
#undef LOGV
|
||||
#undef LOGW
|
||||
#undef LOGE
|
||||
|
||||
} // namespace mozilla
|
|
@ -0,0 +1,201 @@
|
|||
/* 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/. */
|
||||
|
||||
#ifndef DOM_MEDIA_EXTERNALENGINESTATEMACHINE_H_
|
||||
#define DOM_MEDIA_EXTERNALENGINESTATEMACHINE_H_
|
||||
|
||||
#include "MediaDecoderStateMachineBase.h"
|
||||
#include "SeekJob.h"
|
||||
|
||||
namespace mozilla {
|
||||
|
||||
/**
|
||||
* ExternalPlaybackEngine represents a media engine which is responsible for
|
||||
* decoding and playback, which are not controlled by Gecko.
|
||||
*/
|
||||
class ExternalPlaybackEngine;
|
||||
|
||||
enum class ExternalEngineEvent {
|
||||
LoadedMetaData,
|
||||
LoadedFirstFrame,
|
||||
LoadedData,
|
||||
Waiting,
|
||||
Playing,
|
||||
Seeked,
|
||||
BufferingStarted,
|
||||
BufferingEnded,
|
||||
Timeupdate,
|
||||
Ended,
|
||||
RequestForAudio,
|
||||
RequestForVideo,
|
||||
AudioEnough,
|
||||
VideoEnough,
|
||||
};
|
||||
const char* ExternalEngineEventToStr(ExternalEngineEvent aEvent);
|
||||
|
||||
/**
|
||||
* When using ExternalEngineStateMachine, that means we use an external engine
|
||||
* to control decoding and playback (including A/V sync). Eg. Media Foundation
|
||||
* Media Engine on Windows.
|
||||
*
|
||||
* The external engine does most of playback works, and uses ExternalEngineEvent
|
||||
* to tell us its internal state. Therefore, this state machine is responsible
|
||||
* to address those events from the engine and coordinate the format reader in
|
||||
* order to provide data to the engine correctly.
|
||||
*/
|
||||
DDLoggedTypeDeclName(ExternalEngineStateMachine);
|
||||
|
||||
class ExternalEngineStateMachine final
|
||||
: public MediaDecoderStateMachineBase,
|
||||
public DecoderDoctorLifeLogger<ExternalEngineStateMachine> {
|
||||
public:
|
||||
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(ExternalEngineStateMachine, override)
|
||||
|
||||
ExternalEngineStateMachine(MediaDecoder* aDecoder,
|
||||
MediaFormatReader* aReader);
|
||||
|
||||
RefPtr<GenericPromise> InvokeSetSink(
|
||||
const RefPtr<AudioDeviceInfo>& aSink) override;
|
||||
|
||||
// The media sample would be managed by the external engine so we won't store
|
||||
// any samples in our side.
|
||||
size_t SizeOfVideoQueue() const override { return 0; }
|
||||
size_t SizeOfAudioQueue() const override { return 0; }
|
||||
|
||||
// Not supported.
|
||||
void SetVideoDecodeMode(VideoDecodeMode aMode) override {}
|
||||
void InvokeSuspendMediaSink() override {}
|
||||
void InvokeResumeMediaSink() override {}
|
||||
RefPtr<GenericPromise> RequestDebugInfo(
|
||||
dom::MediaDecoderStateMachineDebugInfo& aInfo) override {
|
||||
// This debug info doesn't fit in this scenario because most decoding
|
||||
// details are only visible inside the external engine.
|
||||
return GenericPromise::CreateAndReject(NS_ERROR_FAILURE, __func__);
|
||||
}
|
||||
|
||||
void NotifyEvent(ExternalEngineEvent aEvent) {
|
||||
// On the engine manager thread.
|
||||
Unused << OwnerThread()->Dispatch(NS_NewRunnableFunction(
|
||||
"ExternalEngineStateMachine::NotifyEvent",
|
||||
[self = RefPtr{this}, aEvent] { self->NotifyEventInternal(aEvent); }));
|
||||
}
|
||||
|
||||
const char* GetStateStr() const;
|
||||
|
||||
private:
|
||||
~ExternalEngineStateMachine() = default;
|
||||
|
||||
void AssertOnTaskQueue() const { MOZ_ASSERT(OnTaskQueue()); }
|
||||
|
||||
// Only modify on the task queue.
|
||||
enum class State {
|
||||
InitEngine,
|
||||
WaitingMetadata,
|
||||
RunningEngine,
|
||||
SeekingData,
|
||||
ShutdownEngine,
|
||||
} mState;
|
||||
|
||||
void NotifyEventInternal(ExternalEngineEvent aEvent);
|
||||
|
||||
RefPtr<ShutdownPromise> Shutdown() override;
|
||||
RefPtr<ShutdownPromise> ShutdownInternal();
|
||||
|
||||
void SetPlaybackRate(double aPlaybackRate) override;
|
||||
void BufferedRangeUpdated() override;
|
||||
void VolumeChanged() override;
|
||||
void PreservesPitchChanged() override;
|
||||
void PlayStateChanged() override;
|
||||
void LoopingChanged() override;
|
||||
|
||||
// Not supported.
|
||||
void SetIsLiveStream(bool aIsLiveStream) override {}
|
||||
void SetCanPlayThrough(bool aCanPlayThrough) override {}
|
||||
void SetFragmentEndTime(const media::TimeUnit& aFragmentEndTime) override {}
|
||||
|
||||
void OnEngineInitSuccess();
|
||||
void OnEngineInitFailure();
|
||||
|
||||
void OnMetadataRead(MetadataHolder&& aMetadata);
|
||||
void OnMetadataNotRead(const MediaResult& aError);
|
||||
|
||||
// Functions for handling external engine event.
|
||||
void OnLoadedFirstFrame();
|
||||
void OnLoadedData();
|
||||
void OnWaiting();
|
||||
void OnPlaying();
|
||||
void OnSeeked();
|
||||
void CheckIfSeekCompleted();
|
||||
void OnBufferingStarted();
|
||||
void OnBufferingEnded();
|
||||
void OnTimeupdate();
|
||||
void OnEnded();
|
||||
void OnRequestAudio();
|
||||
void OnRequestVideo();
|
||||
|
||||
void ChangeStateTo(State aState);
|
||||
|
||||
void ResetDecode();
|
||||
|
||||
void EndOfStream(MediaData::Type aType);
|
||||
void WaitForData(MediaData::Type aType);
|
||||
|
||||
void StartRunningEngine();
|
||||
void RunningEngineUpdate(MediaData::Type aType);
|
||||
|
||||
static const char* StateToStr(State aState);
|
||||
|
||||
RefPtr<MediaDecoder::SeekPromise> Seek(const SeekTarget& aTarget) override;
|
||||
void SeekReader();
|
||||
void OnSeekResolved(const media::TimeUnit& aUnit);
|
||||
void OnSeekRejected(const SeekRejectValue& aReject);
|
||||
|
||||
void MaybeFinishWaitForData();
|
||||
|
||||
UniquePtr<ExternalPlaybackEngine> mEngine;
|
||||
|
||||
MozPromiseRequestHolder<GenericNonExclusivePromise> mEngineInitRequest;
|
||||
MozPromiseRequestHolder<MediaFormatReader::MetadataPromise> mMetadataRequest;
|
||||
MozPromiseRequestHolder<MediaFormatReader::SeekPromise> mSeekRequest;
|
||||
|
||||
Maybe<SeekJob> mSeekJob;
|
||||
|
||||
// Set it to true when starting seeking, and would be set to false after
|
||||
// receiving engine's `seeked` event. Used on thhe task queue only.
|
||||
bool mWaitingEngineSeekedEvent = false;
|
||||
bool mIsReaderSeekingCompleted = false;
|
||||
|
||||
bool mHasEnoughAudio = false;
|
||||
bool mHasEnoughVideo = false;
|
||||
bool mSentPlaybackEndedEvent = false;
|
||||
};
|
||||
|
||||
class ExternalPlaybackEngine {
|
||||
public:
|
||||
explicit ExternalPlaybackEngine(ExternalEngineStateMachine* aOwner)
|
||||
: mOwner(aOwner) {}
|
||||
|
||||
virtual ~ExternalPlaybackEngine() = default;
|
||||
|
||||
// Init the engine and specify the preload request.
|
||||
virtual RefPtr<GenericNonExclusivePromise> Init(bool aShouldPreload);
|
||||
virtual void Play() = 0;
|
||||
virtual void Pause() = 0;
|
||||
virtual void Seek(const media::TimeUnit& aTargetTime) = 0;
|
||||
virtual void Shutdown() = 0;
|
||||
virtual void SetPlaybackRate(double aPlaybackRate) = 0;
|
||||
virtual void SetVolume(double aVolume) = 0;
|
||||
virtual void SetLooping(bool aLooping);
|
||||
virtual void SetPreservesPitch(bool aPreservesPitch) = 0;
|
||||
virtual media::TimeUnit GetCurrentPosition() = 0;
|
||||
virtual void NotifyEndOfStream(TrackInfo::TrackType aType) = 0;
|
||||
virtual uint64_t Id() const = 0;
|
||||
virtual void SetMediaInfo(const MediaInfo& aInfo) = 0;
|
||||
|
||||
ExternalEngineStateMachine* const MOZ_NON_OWNING_REF mOwner;
|
||||
};
|
||||
|
||||
} // namespace mozilla
|
||||
|
||||
#endif // DOM_MEDIA_EXTERNALENGINESTATEMACHINE_H_
|
|
@ -5,7 +5,6 @@
|
|||
#include "MediaDecoderStateMachineBase.h"
|
||||
|
||||
#include "MediaDecoder.h"
|
||||
#include "ReaderProxy.h"
|
||||
#include "mozilla/ProfilerMarkers.h"
|
||||
#include "mozilla/TaskQueue.h"
|
||||
#include "nsThreadUtils.h"
|
||||
|
|
|
@ -6,9 +6,13 @@
|
|||
#define DOM_MEDIA_MEDIADECODERSTATEMACHINEBASE_H_
|
||||
|
||||
#include "DecoderDoctorDiagnostics.h"
|
||||
#include "MediaDecoder.h"
|
||||
#include "MediaDecoderOwner.h"
|
||||
#include "MediaEventSource.h"
|
||||
#include "MediaInfo.h"
|
||||
#include "MediaMetadataManager.h"
|
||||
#include "ReaderProxy.h"
|
||||
#include "VideoFrameContainer.h"
|
||||
#include "mozilla/dom/MediaDebugInfoBinding.h"
|
||||
#include "mozilla/Variant.h"
|
||||
#include "nsISupportsImpl.h"
|
||||
|
@ -19,11 +23,8 @@ namespace mozilla {
|
|||
|
||||
class AbstractThread;
|
||||
class FrameStatistics;
|
||||
class MediaDecoder;
|
||||
class MediaFormatReader;
|
||||
class ReaderProxy;
|
||||
class TaskQueue;
|
||||
class VideoFrameContainer;
|
||||
|
||||
struct MediaPlaybackEvent {
|
||||
enum EventType {
|
||||
|
|
|
@ -148,6 +148,7 @@ EXPORTS += [
|
|||
"DOMMediaStream.h",
|
||||
"DriftCompensation.h",
|
||||
"DynamicResampler.h",
|
||||
"ExternalEngineStateMachine.h",
|
||||
"FileBlockCache.h",
|
||||
"ForwardedInputTrack.h",
|
||||
"FrameStatistics.h",
|
||||
|
@ -189,6 +190,7 @@ EXPORTS += [
|
|||
"PrincipalChangeObserver.h",
|
||||
"PrincipalHandle.h",
|
||||
"QueueObject.h",
|
||||
"ReaderProxy.h",
|
||||
"SeekJob.h",
|
||||
"SeekTarget.h",
|
||||
"SelfRef.h",
|
||||
|
@ -268,6 +270,7 @@ UNIFIED_SOURCES += [
|
|||
"DeviceInputTrack.cpp",
|
||||
"DOMMediaStream.cpp",
|
||||
"DynamicResampler.cpp",
|
||||
"ExternalEngineStateMachine.cpp",
|
||||
"FileBlockCache.cpp",
|
||||
"FileMediaResource.cpp",
|
||||
"ForwardedInputTrack.cpp",
|
||||
|
|
Загрузка…
Ссылка в новой задаче