mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
216fe28466
--HG-- rename : content/media/nsAudioAvailableEventManager.cpp => content/media/AudioAvailableEventManager.cpp rename : content/media/nsAudioAvailableEventManager.h => content/media/AudioAvailableEventManager.h rename : content/media/nsAudioStream.cpp => content/media/AudioStream.cpp rename : content/media/nsAudioStream.h => content/media/AudioStream.h rename : content/media/nsMediaCache.cpp => content/media/MediaCache.cpp rename : content/media/nsMediaCache.h => content/media/MediaCache.h rename : content/media/nsBuiltinDecoder.cpp => content/media/MediaDecoder.cpp rename : content/media/nsBuiltinDecoder.h => content/media/MediaDecoder.h rename : content/media/nsBuiltinDecoderReader.cpp => content/media/MediaDecoderReader.cpp rename : content/media/nsBuiltinDecoderReader.h => content/media/MediaDecoderReader.h rename : content/media/nsBuiltinDecoderStateMachine.cpp => content/media/MediaDecoderStateMachine.cpp rename : content/media/nsBuiltinDecoderStateMachine.h => content/media/MediaDecoderStateMachine.h rename : content/media/dash/nsDASHDecoder.cpp => content/media/dash/DASHDecoder.cpp rename : content/media/dash/nsDASHDecoder.h => content/media/dash/DASHDecoder.h rename : content/media/dash/nsDASHReader.cpp => content/media/dash/DASHReader.cpp rename : content/media/dash/nsDASHReader.h => content/media/dash/DASHReader.h rename : content/media/dash/nsDASHRepDecoder.cpp => content/media/dash/DASHRepDecoder.cpp rename : content/media/dash/nsDASHRepDecoder.h => content/media/dash/DASHRepDecoder.h rename : content/media/gstreamer/nsGStreamerDecoder.cpp => content/media/gstreamer/GStreamerDecoder.cpp rename : content/media/gstreamer/nsGStreamerDecoder.h => content/media/gstreamer/GStreamerDecoder.h rename : content/media/gstreamer/nsGStreamerReader.cpp => content/media/gstreamer/GStreamerReader.cpp rename : content/media/gstreamer/nsGStreamerReader.h => content/media/gstreamer/GStreamerReader.h rename : content/media/ogg/nsOggCodecState.cpp => content/media/ogg/OggCodecState.cpp rename : content/media/ogg/nsOggCodecState.h => content/media/ogg/OggCodecState.h rename : content/media/ogg/nsOggDecoder.cpp => content/media/ogg/OggDecoder.cpp rename : content/media/ogg/nsOggDecoder.h => content/media/ogg/OggDecoder.h rename : content/media/ogg/nsOggReader.cpp => content/media/ogg/OggReader.cpp rename : content/media/ogg/nsOggReader.h => content/media/ogg/OggReader.h rename : content/media/omx/nsMediaOmxDecoder.cpp => content/media/omx/MediaOmxDecoder.cpp rename : content/media/omx/nsMediaOmxDecoder.h => content/media/omx/MediaOmxDecoder.h rename : content/media/omx/nsMediaOmxReader.cpp => content/media/omx/MediaOmxReader.cpp rename : content/media/omx/nsMediaOmxReader.h => content/media/omx/MediaOmxReader.h rename : content/media/plugins/nsMediaPluginDecoder.cpp => content/media/plugins/MediaPluginDecoder.cpp rename : content/media/plugins/nsMediaPluginDecoder.h => content/media/plugins/MediaPluginDecoder.h rename : content/media/plugins/nsMediaPluginHost.cpp => content/media/plugins/MediaPluginHost.cpp rename : content/media/plugins/nsMediaPluginHost.h => content/media/plugins/MediaPluginHost.h rename : content/media/plugins/nsMediaPluginReader.cpp => content/media/plugins/MediaPluginReader.cpp rename : content/media/plugins/nsMediaPluginReader.h => content/media/plugins/MediaPluginReader.h rename : content/media/raw/nsRawDecoder.cpp => content/media/raw/RawDecoder.cpp rename : content/media/raw/nsRawDecoder.h => content/media/raw/RawDecoder.h rename : content/media/raw/nsRawReader.cpp => content/media/raw/RawReader.cpp rename : content/media/raw/nsRawReader.h => content/media/raw/RawReader.h rename : content/media/raw/nsRawStructs.h => content/media/raw/RawStructs.h rename : content/media/wave/nsWaveDecoder.cpp => content/media/wave/WaveDecoder.cpp rename : content/media/wave/nsWaveDecoder.h => content/media/wave/WaveDecoder.h rename : content/media/wave/nsWaveReader.cpp => content/media/wave/WaveReader.cpp rename : content/media/wave/nsWaveReader.h => content/media/wave/WaveReader.h rename : content/media/webm/nsWebMBufferedParser.cpp => content/media/webm/WebMBufferedParser.cpp rename : content/media/webm/nsWebMBufferedParser.h => content/media/webm/WebMBufferedParser.h rename : content/media/webm/nsWebMDecoder.cpp => content/media/webm/WebMDecoder.cpp rename : content/media/webm/nsWebMDecoder.h => content/media/webm/WebMDecoder.h rename : content/media/webm/nsWebMReader.cpp => content/media/webm/WebMReader.cpp rename : content/media/webm/nsWebMReader.h => content/media/webm/WebMReader.h
193 lines
6.4 KiB
C++
193 lines
6.4 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/. */
|
|
|
|
/* DASH - Dynamic Adaptive Streaming over HTTP
|
|
*
|
|
* DASH is an adaptive bitrate streaming technology where a multimedia file is
|
|
* partitioned into one or more segments and delivered to a client using HTTP.
|
|
*
|
|
* see DASHDecoder.cpp for info on DASH interaction with the media engine.*/
|
|
|
|
#if !defined(DASHRepDecoder_h_)
|
|
#define DASHRepDecoder_h_
|
|
|
|
#include "Representation.h"
|
|
#include "ImageLayers.h"
|
|
#include "DASHDecoder.h"
|
|
#include "WebMDecoder.h"
|
|
#include "WebMReader.h"
|
|
#include "MediaDecoder.h"
|
|
|
|
namespace mozilla {
|
|
|
|
class DASHDecoder;
|
|
|
|
class DASHRepDecoder : public MediaDecoder
|
|
{
|
|
public:
|
|
typedef mozilla::net::Representation Representation;
|
|
typedef mozilla::net::SegmentBase SegmentBase;
|
|
typedef mozilla::layers::ImageContainer ImageContainer;
|
|
|
|
// Constructor takes a ptr to the main decoder.
|
|
DASHRepDecoder(DASHDecoder* aMainDecoder) :
|
|
mMainDecoder(aMainDecoder),
|
|
mMPDRepresentation(nullptr),
|
|
mMetadataChunkCount(0),
|
|
mCurrentByteRange(),
|
|
mSubsegmentIdx(0),
|
|
mReader(nullptr)
|
|
{
|
|
MOZ_COUNT_CTOR(DASHRepDecoder);
|
|
}
|
|
|
|
~DASHRepDecoder()
|
|
{
|
|
MOZ_COUNT_DTOR(DASHRepDecoder);
|
|
}
|
|
|
|
// Clone not supported; just return nullptr.
|
|
virtual MediaDecoder* Clone() { return nullptr; }
|
|
|
|
// Called by the main decoder at creation time; points to the main state
|
|
// machine managed by the main decoder. Called on the main thread only.
|
|
nsresult SetStateMachine(MediaDecoderStateMachine* aSM);
|
|
|
|
private:
|
|
// Overridden to return the ptr set by SetStateMachine. Called on the main
|
|
// thread only.
|
|
MediaDecoderStateMachine* CreateStateMachine();
|
|
|
|
public:
|
|
// Called by DASHDecoder at creation time; points to the media resource
|
|
// for this decoder's |Representation|. Called on the main thread only.
|
|
void SetResource(MediaResource* aResource);
|
|
|
|
// Sets the |Representation| object for this decoder. Called on the main
|
|
// thread.
|
|
void SetMPDRepresentation(Representation const * aRep);
|
|
|
|
// Called from DASHDecoder on main thread; Starts media stream download.
|
|
nsresult Load(MediaResource* aResource = nullptr,
|
|
nsIStreamListener** aListener = nullptr,
|
|
MediaDecoder* aCloneDonor = nullptr);
|
|
|
|
// Loads the next byte range (or first one on first call). Called on the main
|
|
// thread only.
|
|
void LoadNextByteRange();
|
|
|
|
// Calls from DASHRepDecoder. Called on the main thread only.
|
|
void SetReader(WebMReader* aReader);
|
|
|
|
// Called if the media file encounters a network error. Call on the main
|
|
// thread only.
|
|
void NetworkError();
|
|
|
|
// Set the duration of the media resource in units of seconds.
|
|
// This is called via a channel listener if it can pick up the duration
|
|
// from a content header. Must be called from the main thread only.
|
|
virtual void SetDuration(double aDuration);
|
|
|
|
// Set media stream as infinite. Called on the main thread only.
|
|
void SetInfinite(bool aInfinite);
|
|
|
|
// Sets media stream as seekable. Called on main thread only.
|
|
void SetSeekable(bool aSeekable);
|
|
|
|
// Fire progress events if needed according to the time and byte
|
|
// constraints outlined in the specification. aTimer is true
|
|
// if the method is called as a result of the progress timer rather
|
|
// than the result of downloaded data.
|
|
void Progress(bool aTimer);
|
|
|
|
// Called as data arrives on the stream and is read into the cache. Called
|
|
// on the main thread only.
|
|
void NotifyDataArrived(const char* aBuffer,
|
|
uint32_t aLength,
|
|
int64_t aOffset);
|
|
|
|
// Called by MediaResource when some data has been received.
|
|
// Call on the main thread only.
|
|
void NotifyBytesDownloaded();
|
|
|
|
// Notify that a byte range request has been completed by the media resource.
|
|
// Called on the main thread only.
|
|
void NotifyDownloadEnded(nsresult aStatus);
|
|
|
|
// Called by MediaResource when the "cache suspended" status changes.
|
|
// If MediaResource::IsSuspendedByCache returns true, then the decoder
|
|
// should stop buffering or otherwise waiting for download progress and
|
|
// start consuming data, if possible, because the cache is full.
|
|
void NotifySuspendedStatusChanged();
|
|
|
|
// Gets a byte range containing the byte offset. Call on main thread only.
|
|
nsresult GetByteRangeForSeek(int64_t const aOffset,
|
|
MediaByteRange& aByteRange);
|
|
|
|
// Returns true if the current thread is the state machine thread.
|
|
bool OnStateMachineThread() const;
|
|
|
|
// Returns true if the current thread is the decode thread.
|
|
bool OnDecodeThread() const;
|
|
|
|
// Returns main decoder's monitor for synchronised access.
|
|
ReentrantMonitor& GetReentrantMonitor();
|
|
|
|
// Called on the decode thread from WebMReader.
|
|
ImageContainer* GetImageContainer();
|
|
|
|
// Called when Metadata has been read; notifies that index data is read.
|
|
// Called on the decode thread only.
|
|
void OnReadMetadataCompleted();
|
|
|
|
// Overridden to cleanup ref to |DASHDecoder|. Called on main thread only.
|
|
void Shutdown() {
|
|
NS_ASSERTION(NS_IsMainThread(), "Should be on main thread.");
|
|
// Call parent class shutdown.
|
|
MediaDecoder::Shutdown();
|
|
NS_ENSURE_TRUE(mShuttingDown, );
|
|
// Cleanup ref to main decoder.
|
|
mMainDecoder = nullptr;
|
|
}
|
|
|
|
// Drop reference to state machine and mReader (owned by state machine).
|
|
// Only called during shutdown dance.
|
|
void ReleaseStateMachine();
|
|
|
|
// Notifies the element that decoding has failed.
|
|
void DecodeError();
|
|
|
|
private:
|
|
// The main decoder.
|
|
nsRefPtr<DASHDecoder> mMainDecoder;
|
|
// This decoder's MPD |Representation| object.
|
|
Representation const * mMPDRepresentation;
|
|
|
|
// Countdown var for loading metadata byte ranges.
|
|
uint16_t mMetadataChunkCount;
|
|
|
|
// All the byte ranges for this |Representation|.
|
|
nsTArray<MediaByteRange> mByteRanges;
|
|
|
|
// Byte range for the init and index bytes.
|
|
MediaByteRange mInitByteRange;
|
|
MediaByteRange mIndexByteRange;
|
|
|
|
// The current byte range being requested.
|
|
MediaByteRange mCurrentByteRange;
|
|
// Index of the current byte range.
|
|
uint64_t mSubsegmentIdx;
|
|
|
|
// Ptr to the reader object for this |Representation|. Owned by state
|
|
// machine.
|
|
MediaDecoderReader* mReader;
|
|
};
|
|
|
|
} // namespace mozilla
|
|
|
|
#endif //DASHRepDecoder_h_
|