mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
158 lines
5.2 KiB
C++
158 lines
5.2 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* 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 DecodedStream_h_
|
|
#define DecodedStream_h_
|
|
|
|
#include "nsRefPtr.h"
|
|
#include "nsTArray.h"
|
|
|
|
#include "mozilla/UniquePtr.h"
|
|
#include "mozilla/gfx/Point.h"
|
|
#include "mozilla/CheckedInt.h"
|
|
#include "mozilla/ReentrantMonitor.h"
|
|
|
|
namespace mozilla {
|
|
|
|
class AudioData;
|
|
class VideoData;
|
|
class MediaInfo;
|
|
class AudioSegment;
|
|
class MediaStream;
|
|
class MediaInputPort;
|
|
class SourceMediaStream;
|
|
class ProcessedMediaStream;
|
|
class DecodedStream;
|
|
class DecodedStreamGraphListener;
|
|
class OutputStreamListener;
|
|
class ReentrantMonitor;
|
|
class MediaStreamGraph;
|
|
|
|
template <class T> class MediaQueue;
|
|
|
|
namespace layers {
|
|
class Image;
|
|
}
|
|
|
|
/*
|
|
* All MediaStream-related data is protected by the decoder's monitor.
|
|
* We have at most one DecodedStreamDaata per MediaDecoder. Its stream
|
|
* is used as the input for each ProcessedMediaStream created by calls to
|
|
* captureStream(UntilEnded). Seeking creates a new source stream, as does
|
|
* replaying after the input as ended. In the latter case, the new source is
|
|
* not connected to streams created by captureStreamUntilEnded.
|
|
*/
|
|
class DecodedStreamData {
|
|
public:
|
|
DecodedStreamData(SourceMediaStream* aStream, bool aPlaying);
|
|
~DecodedStreamData();
|
|
bool IsFinished() const;
|
|
int64_t GetPosition() const;
|
|
void SetPlaying(bool aPlaying);
|
|
|
|
/* The following group of fields are protected by the decoder's monitor
|
|
* and can be read or written on any thread.
|
|
*/
|
|
// Count of audio frames written to the stream
|
|
int64_t mAudioFramesWritten;
|
|
// mNextVideoTime is the end timestamp for the last packet sent to the stream.
|
|
// Therefore video packets starting at or after this time need to be copied
|
|
// to the output stream.
|
|
int64_t mNextVideoTime; // microseconds
|
|
int64_t mNextAudioTime; // microseconds
|
|
// The last video image sent to the stream. Useful if we need to replicate
|
|
// the image.
|
|
nsRefPtr<layers::Image> mLastVideoImage;
|
|
gfx::IntSize mLastVideoImageDisplaySize;
|
|
// This is set to true when the stream is initialized (audio and
|
|
// video tracks added).
|
|
bool mStreamInitialized;
|
|
bool mHaveSentFinish;
|
|
bool mHaveSentFinishAudio;
|
|
bool mHaveSentFinishVideo;
|
|
|
|
// The decoder is responsible for calling Destroy() on this stream.
|
|
const nsRefPtr<SourceMediaStream> mStream;
|
|
nsRefPtr<DecodedStreamGraphListener> mListener;
|
|
bool mPlaying;
|
|
// True if we need to send a compensation video frame to ensure the
|
|
// StreamTime going forward.
|
|
bool mEOSVideoCompensation;
|
|
};
|
|
|
|
class OutputStreamData {
|
|
public:
|
|
~OutputStreamData();
|
|
void Init(DecodedStream* aDecodedStream, ProcessedMediaStream* aStream);
|
|
nsRefPtr<ProcessedMediaStream> mStream;
|
|
// mPort connects DecodedStreamData::mStream to our mStream.
|
|
nsRefPtr<MediaInputPort> mPort;
|
|
nsRefPtr<OutputStreamListener> mListener;
|
|
};
|
|
|
|
class DecodedStream {
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(DecodedStream);
|
|
public:
|
|
DecodedStream();
|
|
void DestroyData();
|
|
void RecreateData();
|
|
void Connect(ProcessedMediaStream* aStream, bool aFinishWhenEnded);
|
|
void Remove(MediaStream* aStream);
|
|
void SetPlaying(bool aPlaying);
|
|
bool HaveEnoughAudio(const MediaInfo& aInfo) const;
|
|
bool HaveEnoughVideo(const MediaInfo& aInfo) const;
|
|
CheckedInt64 AudioEndTime(int64_t aStartTime, uint32_t aRate) const;
|
|
int64_t GetPosition() const;
|
|
bool IsFinished() const;
|
|
|
|
// Return true if stream is finished.
|
|
bool SendData(int64_t aStartTime,
|
|
const MediaInfo& aInfo,
|
|
MediaQueue<AudioData>& aAudioQueue,
|
|
MediaQueue<VideoData>& aVideoQueue,
|
|
double aVolume, bool aIsSameOrigin);
|
|
|
|
protected:
|
|
virtual ~DecodedStream() {}
|
|
|
|
private:
|
|
ReentrantMonitor& GetReentrantMonitor() const;
|
|
void RecreateData(MediaStreamGraph* aGraph);
|
|
void Connect(OutputStreamData* aStream);
|
|
nsTArray<OutputStreamData>& OutputStreams();
|
|
void InitTracks(int64_t aStartTime, const MediaInfo& aInfo);
|
|
void AdvanceTracks(int64_t aStartTime, const MediaInfo& aInfo);
|
|
|
|
void SendAudio(int64_t aStartTime,
|
|
const MediaInfo& aInfo,
|
|
MediaQueue<AudioData>& aQueue,
|
|
double aVolume, bool aIsSameOrigin);
|
|
|
|
void SendVideo(int64_t aStartTime,
|
|
const MediaInfo& aInfo,
|
|
MediaQueue<VideoData>& aQueue,
|
|
bool aIsSameOrigin);
|
|
|
|
UniquePtr<DecodedStreamData> mData;
|
|
// Data about MediaStreams that are being fed by the decoder.
|
|
nsTArray<OutputStreamData> mOutputStreams;
|
|
|
|
// TODO: This is a temp solution to get rid of decoder monitor on the main
|
|
// thread in MDSM::AddOutputStream and MDSM::RecreateDecodedStream as
|
|
// required by bug 1146482. DecodedStream needs to release monitor before
|
|
// calling back into MDSM functions in order to prevent deadlocks.
|
|
//
|
|
// Please move all capture-stream related code from MDSM into DecodedStream
|
|
// and apply "dispatch + mirroring" to get rid of this monitor in the future.
|
|
mutable ReentrantMonitor mMonitor;
|
|
|
|
bool mPlaying;
|
|
};
|
|
|
|
} // namespace mozilla
|
|
|
|
#endif // DecodedStream_h_
|