gecko-dev/dom/media/SeekTask.cpp
JW Wang b263fc85e1 Bug 1284399. Part 6 - store a copy of SeekTarget instead of its reference in SeekTask so it's life cycle can be independent from the client. r=kaku
MozReview-Commit-ID: BWrutqvsj29

--HG--
extra : rebase_source : 2eb997b9a13a7b9a3390700aceef9fbfb77268a2
extra : source : 8d7d3b19db1cfbc8df2e91bd78f6fbb9c7688ac0
2016-07-05 14:12:42 +08:00

87 lines
2.1 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 "SeekTask.h"
#include "MediaDecoderReaderWrapper.h"
#include "mozilla/AbstractThread.h"
namespace mozilla {
SeekTask::SeekTask(const void* aDecoderID,
AbstractThread* aThread,
MediaDecoderReaderWrapper* aReader,
const SeekTarget& aTarget)
: mDecoderID(aDecoderID)
, mOwnerThread(aThread)
, mReader(aReader)
, mTarget(aTarget)
, mIsDiscarded(false)
, mIsAudioQueueFinished(false)
, mIsVideoQueueFinished(false)
, mNeedToStopPrerollingAudio(false)
, mNeedToStopPrerollingVideo(false)
{
AssertOwnerThread();
}
SeekTask::~SeekTask()
{
AssertOwnerThread();
MOZ_ASSERT(mIsDiscarded);
}
void
SeekTask::Resolve(const char* aCallSite)
{
AssertOwnerThread();
SeekTaskResolveValue val;
val.mSeekedAudioData = mSeekedAudioData;
val.mSeekedVideoData = mSeekedVideoData;
val.mIsAudioQueueFinished = mIsAudioQueueFinished;
val.mIsVideoQueueFinished = mIsVideoQueueFinished;
val.mNeedToStopPrerollingAudio = mNeedToStopPrerollingAudio;
val.mNeedToStopPrerollingVideo = mNeedToStopPrerollingVideo;
mSeekTaskPromise.Resolve(val, aCallSite);
}
void
SeekTask::RejectIfExist(const char* aCallSite)
{
AssertOwnerThread();
SeekTaskRejectValue val;
val.mIsAudioQueueFinished = mIsAudioQueueFinished;
val.mIsVideoQueueFinished = mIsVideoQueueFinished;
val.mNeedToStopPrerollingAudio = mNeedToStopPrerollingAudio;
val.mNeedToStopPrerollingVideo = mNeedToStopPrerollingVideo;
mSeekTaskPromise.RejectIfExists(val, aCallSite);
}
void
SeekTask::AssertOwnerThread() const
{
MOZ_ASSERT(mOwnerThread->IsCurrentThreadIn());
}
AbstractThread*
SeekTask::OwnerThread() const
{
AssertOwnerThread();
return mOwnerThread;
}
const SeekTarget&
SeekTask::GetSeekTarget()
{
AssertOwnerThread();
return mTarget;
}
} // namespace mozilla