2013-11-20 21:04:33 +00:00
|
|
|
/* -*- 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/. */
|
|
|
|
|
|
|
|
#if !defined(MP4Reader_h_)
|
|
|
|
#define MP4Reader_h_
|
|
|
|
|
|
|
|
#include "MediaDecoderReader.h"
|
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "PlatformDecoderModule.h"
|
|
|
|
#include "mp4_demuxer/mp4_demuxer.h"
|
2014-02-05 01:29:28 +00:00
|
|
|
#include "MediaTaskQueue.h"
|
2013-11-20 21:04:33 +00:00
|
|
|
|
|
|
|
#include <deque>
|
Bug 959440 - Various cleanups in MP4Reader. r=kinetik
Change PlatformDecoderModule::Create*Decoder() to take an
mp4_demuxer::{Audio,Video}DecoderConfig parameter, instead of enumerating all
parameters. This means the platform decoders can have more data if need be,
like the AACAudioConfig.
Change MediaDataDecoder::Input() to take an nsAutoPtr<MP4Sample>&. The sample
will be deleted by the caller (MP4Reader) if Input() returns DECODE_STATUS_OK,
but if the MediaDataDecoder wants to assume responsibility of the
lifecycle of the sample (say to enqueue it), it can forget() on the
nsAutoPtr& passed in and assume responsibility.
Call PlatformDecoderModule::Create() on the decode thread. This is a step
towards making these classes decode-thread only.
Add PlatformDecoderModule::Init(), which caches the pref's we need, since
PlatformDecoderModule::Create() is no longer called on the main thread, we can
no longer access them in there.
Add Init() method to MediaDataDecoder interface. This is so that we can call
MediaDataDecoder::Shutdown() to unblock the initialization of a decoder, if
that init needs to block.
Pass LayersBackend type to WMFVideoDecoder, so it knows whether to init DXVA.
2014-01-15 03:13:54 +00:00
|
|
|
#include "mozilla/Monitor.h"
|
2013-11-20 21:04:33 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
namespace dom {
|
|
|
|
class TimeRanges;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef std::deque<mp4_demuxer::MP4Sample*> MP4SampleQueue;
|
|
|
|
|
|
|
|
class MP4Stream;
|
|
|
|
|
2014-11-25 18:56:07 +00:00
|
|
|
class MP4Reader MOZ_FINAL : public MediaDecoderReader
|
2013-11-20 21:04:33 +00:00
|
|
|
{
|
2014-07-20 00:54:00 +00:00
|
|
|
typedef mp4_demuxer::TrackType TrackType;
|
|
|
|
|
2013-11-20 21:04:33 +00:00
|
|
|
public:
|
2014-09-01 03:50:23 +00:00
|
|
|
explicit MP4Reader(AbstractMediaDecoder* aDecoder);
|
2013-11-20 21:04:33 +00:00
|
|
|
|
|
|
|
virtual ~MP4Reader();
|
|
|
|
|
|
|
|
virtual nsresult Init(MediaDecoderReader* aCloneDonor) MOZ_OVERRIDE;
|
|
|
|
|
2014-12-17 23:41:19 +00:00
|
|
|
virtual size_t SizeOfVideoQueueInFrames() MOZ_OVERRIDE;
|
|
|
|
virtual size_t SizeOfAudioQueueInFrames() MOZ_OVERRIDE;
|
|
|
|
|
2014-12-10 22:03:56 +00:00
|
|
|
virtual nsRefPtr<VideoDataPromise>
|
|
|
|
RequestVideoData(bool aSkipToNextKeyframe, int64_t aTimeThreshold) MOZ_OVERRIDE;
|
2013-11-20 21:04:33 +00:00
|
|
|
|
2014-12-10 22:03:56 +00:00
|
|
|
virtual nsRefPtr<AudioDataPromise> RequestAudioData() MOZ_OVERRIDE;
|
2014-07-20 00:54:00 +00:00
|
|
|
|
2013-11-20 21:04:33 +00:00
|
|
|
virtual bool HasAudio() MOZ_OVERRIDE;
|
|
|
|
virtual bool HasVideo() MOZ_OVERRIDE;
|
|
|
|
|
2014-12-16 03:25:00 +00:00
|
|
|
// PreReadMetadata() is called by MediaDecoderStateMachine::DecodeMetadata()
|
|
|
|
// before checking hardware resource. In Gonk, it requests hardware codec so
|
|
|
|
// MediaDecoderStateMachine could go to DORMANT state if the hardware codec is
|
|
|
|
// not available.
|
|
|
|
virtual void PreReadMetadata() MOZ_OVERRIDE;
|
2013-11-20 21:04:33 +00:00
|
|
|
virtual nsresult ReadMetadata(MediaInfo* aInfo,
|
|
|
|
MetadataTags** aTags) MOZ_OVERRIDE;
|
|
|
|
|
2014-11-06 09:52:44 +00:00
|
|
|
virtual void ReadUpdatedMetadata(MediaInfo* aInfo) MOZ_OVERRIDE;
|
|
|
|
|
2014-12-16 09:52:57 +00:00
|
|
|
virtual nsRefPtr<SeekPromise>
|
2015-01-16 18:57:59 +00:00
|
|
|
Seek(int64_t aTime, int64_t aEndTime) MOZ_OVERRIDE;
|
2014-06-23 10:08:34 +00:00
|
|
|
|
|
|
|
virtual bool IsMediaSeekable() MOZ_OVERRIDE;
|
|
|
|
|
2014-08-19 02:13:55 +00:00
|
|
|
virtual int64_t GetEvictionOffset(double aTime) MOZ_OVERRIDE;
|
|
|
|
|
2014-11-12 04:50:21 +00:00
|
|
|
virtual nsresult GetBuffered(dom::TimeRanges* aBuffered) MOZ_OVERRIDE;
|
2014-06-02 15:38:04 +00:00
|
|
|
|
2014-08-07 10:23:45 +00:00
|
|
|
// For Media Resource Management
|
2014-11-04 13:14:00 +00:00
|
|
|
virtual void SetIdle() MOZ_OVERRIDE;
|
2014-07-30 06:53:34 +00:00
|
|
|
virtual bool IsWaitingMediaResources() MOZ_OVERRIDE;
|
2014-08-07 10:23:45 +00:00
|
|
|
virtual bool IsDormantNeeded() MOZ_OVERRIDE;
|
|
|
|
virtual void ReleaseMediaResources() MOZ_OVERRIDE;
|
2014-11-04 13:14:00 +00:00
|
|
|
virtual void SetSharedDecoderManager(SharedDecoderManager* aManager)
|
|
|
|
MOZ_OVERRIDE;
|
2014-07-30 06:53:34 +00:00
|
|
|
|
2014-08-01 04:04:37 +00:00
|
|
|
virtual nsresult ResetDecode() MOZ_OVERRIDE;
|
|
|
|
|
2014-12-09 19:43:21 +00:00
|
|
|
virtual nsRefPtr<ShutdownPromise> Shutdown() MOZ_OVERRIDE;
|
2014-08-03 07:28:39 +00:00
|
|
|
|
2015-01-13 09:31:03 +00:00
|
|
|
virtual bool IsAsync() const MOZ_OVERRIDE { return true; }
|
|
|
|
|
2014-02-05 01:29:28 +00:00
|
|
|
private:
|
2013-11-20 21:04:33 +00:00
|
|
|
|
2015-01-11 21:24:26 +00:00
|
|
|
bool InitDemuxer();
|
2014-07-20 00:54:00 +00:00
|
|
|
void ReturnOutput(MediaData* aData, TrackType aTrack);
|
|
|
|
|
|
|
|
// Sends input to decoder for aTrack, and output to the state machine,
|
|
|
|
// if necessary.
|
|
|
|
void Update(TrackType aTrack);
|
|
|
|
|
|
|
|
// Enqueues a task to call Update(aTrack) on the decoder task queue.
|
|
|
|
// Lock for corresponding track must be held.
|
|
|
|
void ScheduleUpdate(TrackType aTrack);
|
|
|
|
|
2014-07-30 06:53:34 +00:00
|
|
|
void ExtractCryptoInitData(nsTArray<uint8_t>& aInitData);
|
|
|
|
|
2013-11-27 22:12:22 +00:00
|
|
|
// Initializes mLayersBackendType if possible.
|
|
|
|
void InitLayersBackendType();
|
2013-11-20 21:04:33 +00:00
|
|
|
|
|
|
|
// Blocks until the demuxer produces an sample of specified type.
|
|
|
|
// Returns nullptr on error on EOS. Caller must delete sample.
|
|
|
|
mp4_demuxer::MP4Sample* PopSample(mp4_demuxer::TrackType aTrack);
|
2014-12-30 00:10:16 +00:00
|
|
|
mp4_demuxer::MP4Sample* PopSampleLocked(mp4_demuxer::TrackType aTrack);
|
2013-11-20 21:04:33 +00:00
|
|
|
|
|
|
|
bool SkipVideoDemuxToNextKeyFrame(int64_t aTimeThreshold, uint32_t& parsed);
|
|
|
|
|
2014-07-20 00:54:00 +00:00
|
|
|
// DecoderCallback proxies the MediaDataDecoderCallback calls to these
|
|
|
|
// functions.
|
2014-02-05 01:29:28 +00:00
|
|
|
void Output(mp4_demuxer::TrackType aType, MediaData* aSample);
|
|
|
|
void InputExhausted(mp4_demuxer::TrackType aTrack);
|
|
|
|
void Error(mp4_demuxer::TrackType aTrack);
|
|
|
|
void Flush(mp4_demuxer::TrackType aTrack);
|
2014-07-25 02:57:25 +00:00
|
|
|
void DrainComplete(mp4_demuxer::TrackType aTrack);
|
2014-08-13 05:13:28 +00:00
|
|
|
void UpdateIndex();
|
2014-08-15 06:25:06 +00:00
|
|
|
bool IsSupportedAudioMimeType(const char* aMimeType);
|
2014-11-11 03:30:52 +00:00
|
|
|
bool IsSupportedVideoMimeType(const char* aMimeType);
|
2014-08-07 10:23:45 +00:00
|
|
|
void NotifyResourcesStatusChanged();
|
2014-12-16 03:25:00 +00:00
|
|
|
void RequestCodecResource();
|
2014-08-07 10:23:45 +00:00
|
|
|
bool IsWaitingOnCodecResource();
|
2014-10-13 22:05:00 +00:00
|
|
|
virtual bool IsWaitingOnCDMResource() MOZ_OVERRIDE;
|
2014-02-05 01:29:28 +00:00
|
|
|
|
2015-01-20 02:20:43 +00:00
|
|
|
Microseconds GetNextKeyframeTime();
|
|
|
|
bool ShouldSkip(bool aSkipToNextKeyframe, int64_t aTimeThreshold);
|
|
|
|
|
2014-12-17 23:41:19 +00:00
|
|
|
size_t SizeOfQueue(TrackType aTrack);
|
|
|
|
|
2015-01-11 21:24:26 +00:00
|
|
|
nsRefPtr<MP4Stream> mStream;
|
|
|
|
int64_t mTimestampOffset;
|
2013-11-20 21:04:33 +00:00
|
|
|
nsAutoPtr<mp4_demuxer::MP4Demuxer> mDemuxer;
|
2014-12-23 03:36:10 +00:00
|
|
|
nsRefPtr<PlatformDecoderModule> mPlatform;
|
2013-11-20 21:04:33 +00:00
|
|
|
|
2014-02-05 01:29:28 +00:00
|
|
|
class DecoderCallback : public MediaDataDecoderCallback {
|
|
|
|
public:
|
|
|
|
DecoderCallback(MP4Reader* aReader,
|
|
|
|
mp4_demuxer::TrackType aType)
|
|
|
|
: mReader(aReader)
|
|
|
|
, mType(aType)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
virtual void Output(MediaData* aSample) MOZ_OVERRIDE {
|
|
|
|
mReader->Output(mType, aSample);
|
|
|
|
}
|
|
|
|
virtual void InputExhausted() MOZ_OVERRIDE {
|
|
|
|
mReader->InputExhausted(mType);
|
|
|
|
}
|
|
|
|
virtual void Error() MOZ_OVERRIDE {
|
|
|
|
mReader->Error(mType);
|
|
|
|
}
|
2014-07-25 02:57:25 +00:00
|
|
|
virtual void DrainComplete() MOZ_OVERRIDE {
|
|
|
|
mReader->DrainComplete(mType);
|
|
|
|
}
|
2014-08-07 10:23:45 +00:00
|
|
|
virtual void NotifyResourcesStatusChanged() MOZ_OVERRIDE {
|
|
|
|
mReader->NotifyResourcesStatusChanged();
|
|
|
|
}
|
|
|
|
virtual void ReleaseMediaResources() MOZ_OVERRIDE {
|
|
|
|
mReader->ReleaseMediaResources();
|
|
|
|
}
|
2014-02-05 01:29:28 +00:00
|
|
|
private:
|
|
|
|
MP4Reader* mReader;
|
|
|
|
mp4_demuxer::TrackType mType;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct DecoderData {
|
2014-12-10 22:03:56 +00:00
|
|
|
DecoderData(MediaData::Type aType,
|
2014-02-05 01:29:28 +00:00
|
|
|
uint32_t aDecodeAhead)
|
2014-12-10 22:03:56 +00:00
|
|
|
: mType(aType)
|
|
|
|
, mMonitor(aType == MediaData::AUDIO_DATA ? "MP4 audio decoder data"
|
|
|
|
: "MP4 video decoder data")
|
2014-02-05 01:29:28 +00:00
|
|
|
, mNumSamplesInput(0)
|
|
|
|
, mNumSamplesOutput(0)
|
|
|
|
, mDecodeAhead(aDecodeAhead)
|
|
|
|
, mActive(false)
|
|
|
|
, mInputExhausted(false)
|
|
|
|
, mError(false)
|
|
|
|
, mIsFlushing(false)
|
2014-07-20 00:54:00 +00:00
|
|
|
, mUpdateScheduled(false)
|
2014-12-04 19:51:30 +00:00
|
|
|
, mDemuxEOS(false)
|
|
|
|
, mDrainComplete(false)
|
2014-07-20 00:54:00 +00:00
|
|
|
, mDiscontinuity(false)
|
2014-02-05 01:29:28 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// The platform decoder.
|
2014-07-31 01:40:19 +00:00
|
|
|
nsRefPtr<MediaDataDecoder> mDecoder;
|
2014-02-05 01:29:28 +00:00
|
|
|
// TaskQueue on which decoder can choose to decode.
|
|
|
|
// Only non-null up until the decoder is created.
|
2014-07-31 01:40:19 +00:00
|
|
|
nsRefPtr<MediaTaskQueue> mTaskQueue;
|
2014-02-05 01:29:28 +00:00
|
|
|
// Callback that receives output and error notifications from the decoder.
|
|
|
|
nsAutoPtr<DecoderCallback> mCallback;
|
2014-07-20 00:54:00 +00:00
|
|
|
// Decoded samples returned my mDecoder awaiting being returned to
|
|
|
|
// state machine upon request.
|
|
|
|
nsTArray<nsRefPtr<MediaData> > mOutput;
|
2014-12-10 22:03:56 +00:00
|
|
|
// Disambiguate Audio vs Video.
|
|
|
|
MediaData::Type mType;
|
|
|
|
|
|
|
|
// These get overriden in the templated concrete class.
|
|
|
|
virtual bool HasPromise() = 0;
|
|
|
|
virtual void RejectPromise(MediaDecoderReader::NotDecodedReason aReason,
|
|
|
|
const char* aMethodName) = 0;
|
2014-07-20 00:54:00 +00:00
|
|
|
|
2014-02-05 01:29:28 +00:00
|
|
|
// Monitor that protects all non-threadsafe state; the primitives
|
|
|
|
// that follow.
|
|
|
|
Monitor mMonitor;
|
|
|
|
uint64_t mNumSamplesInput;
|
|
|
|
uint64_t mNumSamplesOutput;
|
|
|
|
uint32_t mDecodeAhead;
|
|
|
|
// Whether this stream exists in the media.
|
|
|
|
bool mActive;
|
|
|
|
bool mInputExhausted;
|
|
|
|
bool mError;
|
|
|
|
bool mIsFlushing;
|
2014-07-20 00:54:00 +00:00
|
|
|
bool mUpdateScheduled;
|
2014-12-04 19:51:30 +00:00
|
|
|
bool mDemuxEOS;
|
|
|
|
bool mDrainComplete;
|
2014-07-20 00:54:00 +00:00
|
|
|
bool mDiscontinuity;
|
2014-02-05 01:29:28 +00:00
|
|
|
};
|
2014-12-10 22:03:56 +00:00
|
|
|
|
|
|
|
template<typename PromiseType>
|
|
|
|
struct DecoderDataWithPromise : public DecoderData {
|
|
|
|
DecoderDataWithPromise(MediaData::Type aType, uint32_t aDecodeAhead) :
|
|
|
|
DecoderData(aType, aDecodeAhead)
|
|
|
|
{
|
|
|
|
mPromise.SetMonitor(&mMonitor);
|
|
|
|
}
|
|
|
|
|
|
|
|
MediaPromiseHolder<PromiseType> mPromise;
|
|
|
|
|
|
|
|
bool HasPromise() MOZ_OVERRIDE { return !mPromise.IsEmpty(); }
|
|
|
|
void RejectPromise(MediaDecoderReader::NotDecodedReason aReason,
|
|
|
|
const char* aMethodName) MOZ_OVERRIDE
|
|
|
|
{
|
|
|
|
mPromise.Reject(aReason, aMethodName);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
DecoderDataWithPromise<AudioDataPromise> mAudio;
|
|
|
|
DecoderDataWithPromise<VideoDataPromise> mVideo;
|
|
|
|
|
2014-07-30 06:53:34 +00:00
|
|
|
// Queued samples extracted by the demuxer, but not yet sent to the platform
|
2014-05-22 02:42:39 +00:00
|
|
|
// decoder.
|
|
|
|
nsAutoPtr<mp4_demuxer::MP4Sample> mQueuedVideoSample;
|
2014-02-05 01:29:28 +00:00
|
|
|
|
2014-07-20 00:54:00 +00:00
|
|
|
// Returns true when the decoder for this track needs input.
|
|
|
|
// aDecoder.mMonitor must be locked.
|
|
|
|
bool NeedInput(DecoderData& aDecoder);
|
|
|
|
|
2014-02-05 01:29:28 +00:00
|
|
|
// The last number of decoded output frames that we've reported to
|
|
|
|
// MediaDecoder::NotifyDecoded(). We diff the number of output video
|
|
|
|
// frames every time that DecodeVideoData() is called, and report the
|
|
|
|
// delta there.
|
|
|
|
uint64_t mLastReportedNumDecodedFrames;
|
|
|
|
|
|
|
|
DecoderData& GetDecoderData(mp4_demuxer::TrackType aTrack);
|
2013-11-20 21:04:33 +00:00
|
|
|
|
|
|
|
layers::LayersBackend mLayersBackendType;
|
|
|
|
|
2014-07-30 06:53:34 +00:00
|
|
|
nsTArray<nsTArray<uint8_t>> mInitDataEncountered;
|
|
|
|
|
|
|
|
// True if we've read the streams' metadata.
|
|
|
|
bool mDemuxerInitialized;
|
|
|
|
|
|
|
|
// Synchronized by decoder monitor.
|
|
|
|
bool mIsEncrypted;
|
2014-08-19 02:13:56 +00:00
|
|
|
|
|
|
|
bool mIndexReady;
|
2014-12-30 00:10:16 +00:00
|
|
|
Monitor mDemuxerMonitor;
|
2014-11-04 13:14:00 +00:00
|
|
|
nsRefPtr<SharedDecoderManager> mSharedDecoderManager;
|
2013-11-20 21:04:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif
|