mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
229 lines
6.8 KiB
C++
229 lines
6.8 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/. */
|
|
|
|
#if !defined(MP4Reader_h_)
|
|
#define MP4Reader_h_
|
|
|
|
#include "MediaDecoderReader.h"
|
|
#include "nsAutoPtr.h"
|
|
#include "PlatformDecoderModule.h"
|
|
#include "mp4_demuxer/mp4_demuxer.h"
|
|
#include "MediaTaskQueue.h"
|
|
|
|
#include <deque>
|
|
#include "mozilla/Monitor.h"
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
class TimeRanges;
|
|
}
|
|
|
|
typedef std::deque<mp4_demuxer::MP4Sample*> MP4SampleQueue;
|
|
|
|
class MP4Stream;
|
|
|
|
class MP4Reader : public MediaDecoderReader
|
|
{
|
|
typedef mp4_demuxer::TrackType TrackType;
|
|
|
|
public:
|
|
explicit MP4Reader(AbstractMediaDecoder* aDecoder);
|
|
|
|
virtual ~MP4Reader();
|
|
|
|
virtual nsresult Init(MediaDecoderReader* aCloneDonor) MOZ_OVERRIDE;
|
|
|
|
virtual void RequestVideoData(bool aSkipToNextKeyframe,
|
|
int64_t aTimeThreshold) MOZ_OVERRIDE;
|
|
|
|
virtual void RequestAudioData() MOZ_OVERRIDE;
|
|
|
|
virtual bool HasAudio() MOZ_OVERRIDE;
|
|
virtual bool HasVideo() MOZ_OVERRIDE;
|
|
|
|
virtual nsresult ReadMetadata(MediaInfo* aInfo,
|
|
MetadataTags** aTags) MOZ_OVERRIDE;
|
|
|
|
virtual void ReadUpdatedMetadata(MediaInfo* aInfo) MOZ_OVERRIDE;
|
|
|
|
virtual void Seek(int64_t aTime,
|
|
int64_t aStartTime,
|
|
int64_t aEndTime,
|
|
int64_t aCurrentTime) MOZ_OVERRIDE;
|
|
|
|
virtual bool IsMediaSeekable() MOZ_OVERRIDE;
|
|
|
|
virtual void NotifyDataArrived(const char* aBuffer, uint32_t aLength,
|
|
int64_t aOffset) MOZ_OVERRIDE;
|
|
|
|
virtual int64_t GetEvictionOffset(double aTime) MOZ_OVERRIDE;
|
|
|
|
virtual nsresult GetBuffered(dom::TimeRanges* aBuffered) MOZ_OVERRIDE;
|
|
|
|
// For Media Resource Management
|
|
virtual bool IsWaitingMediaResources() MOZ_OVERRIDE;
|
|
virtual bool IsDormantNeeded() MOZ_OVERRIDE;
|
|
virtual void ReleaseMediaResources() MOZ_OVERRIDE;
|
|
|
|
virtual nsresult ResetDecode() MOZ_OVERRIDE;
|
|
|
|
virtual void Shutdown() MOZ_OVERRIDE;
|
|
|
|
private:
|
|
|
|
void ReturnEOS(TrackType aTrack);
|
|
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);
|
|
|
|
void ExtractCryptoInitData(nsTArray<uint8_t>& aInitData);
|
|
|
|
// Initializes mLayersBackendType if possible.
|
|
void InitLayersBackendType();
|
|
|
|
// 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);
|
|
|
|
bool SkipVideoDemuxToNextKeyFrame(int64_t aTimeThreshold, uint32_t& parsed);
|
|
|
|
// DecoderCallback proxies the MediaDataDecoderCallback calls to these
|
|
// functions.
|
|
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);
|
|
void DrainComplete(mp4_demuxer::TrackType aTrack);
|
|
void UpdateIndex();
|
|
bool IsSupportedAudioMimeType(const char* aMimeType);
|
|
void NotifyResourcesStatusChanged();
|
|
bool IsWaitingOnCodecResource();
|
|
virtual bool IsWaitingOnCDMResource() MOZ_OVERRIDE;
|
|
|
|
nsAutoPtr<mp4_demuxer::MP4Demuxer> mDemuxer;
|
|
nsAutoPtr<PlatformDecoderModule> mPlatform;
|
|
|
|
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);
|
|
}
|
|
virtual void DrainComplete() MOZ_OVERRIDE {
|
|
mReader->DrainComplete(mType);
|
|
}
|
|
virtual void NotifyResourcesStatusChanged() MOZ_OVERRIDE {
|
|
mReader->NotifyResourcesStatusChanged();
|
|
}
|
|
virtual void ReleaseMediaResources() MOZ_OVERRIDE {
|
|
mReader->ReleaseMediaResources();
|
|
}
|
|
private:
|
|
MP4Reader* mReader;
|
|
mp4_demuxer::TrackType mType;
|
|
};
|
|
|
|
struct DecoderData {
|
|
DecoderData(const char* aMonitorName,
|
|
uint32_t aDecodeAhead)
|
|
: mMonitor(aMonitorName)
|
|
, mNumSamplesInput(0)
|
|
, mNumSamplesOutput(0)
|
|
, mDecodeAhead(aDecodeAhead)
|
|
, mActive(false)
|
|
, mInputExhausted(false)
|
|
, mError(false)
|
|
, mIsFlushing(false)
|
|
, mDrainComplete(false)
|
|
, mOutputRequested(false)
|
|
, mUpdateScheduled(false)
|
|
, mEOS(false)
|
|
, mDiscontinuity(false)
|
|
{
|
|
}
|
|
|
|
// The platform decoder.
|
|
nsRefPtr<MediaDataDecoder> mDecoder;
|
|
// TaskQueue on which decoder can choose to decode.
|
|
// Only non-null up until the decoder is created.
|
|
nsRefPtr<MediaTaskQueue> mTaskQueue;
|
|
// Callback that receives output and error notifications from the decoder.
|
|
// Decoded samples returned my mDecoder awaiting being returned to
|
|
// state machine upon request.
|
|
std::queue<MediaData*> mOutput;
|
|
|
|
nsAutoPtr<DecoderCallback> mCallback;
|
|
// 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;
|
|
bool mDrainComplete;
|
|
bool mOutputRequested;
|
|
bool mUpdateScheduled;
|
|
bool mEOS;
|
|
bool mDiscontinuity;
|
|
};
|
|
DecoderData mAudio;
|
|
DecoderData mVideo;
|
|
// Queued samples extracted by the demuxer, but not yet sent to the platform
|
|
// decoder.
|
|
nsAutoPtr<mp4_demuxer::MP4Sample> mQueuedVideoSample;
|
|
|
|
// Returns true when the decoder for this track needs input.
|
|
// aDecoder.mMonitor must be locked.
|
|
bool NeedInput(DecoderData& aDecoder);
|
|
|
|
// 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);
|
|
|
|
layers::LayersBackend mLayersBackendType;
|
|
|
|
nsTArray<nsTArray<uint8_t>> mInitDataEncountered;
|
|
|
|
// True if we've read the streams' metadata.
|
|
bool mDemuxerInitialized;
|
|
|
|
// Synchronized by decoder monitor.
|
|
bool mIsEncrypted;
|
|
|
|
bool mIndexReady;
|
|
Monitor mIndexMonitor;
|
|
};
|
|
|
|
} // namespace mozilla
|
|
|
|
#endif
|