mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
1ade2536ed
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.
91 lines
2.5 KiB
C++
91 lines
2.5 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 "mp4_demuxer/box_definitions.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
|
|
{
|
|
public:
|
|
MP4Reader(AbstractMediaDecoder* aDecoder);
|
|
|
|
virtual ~MP4Reader();
|
|
|
|
virtual nsresult Init(MediaDecoderReader* aCloneDonor) MOZ_OVERRIDE;
|
|
|
|
virtual bool DecodeAudioData() MOZ_OVERRIDE;
|
|
virtual bool DecodeVideoFrame(bool &aKeyframeSkip,
|
|
int64_t aTimeThreshold) MOZ_OVERRIDE;
|
|
|
|
virtual bool HasAudio() MOZ_OVERRIDE;
|
|
virtual bool HasVideo() MOZ_OVERRIDE;
|
|
|
|
virtual nsresult ReadMetadata(MediaInfo* aInfo,
|
|
MetadataTags** aTags) MOZ_OVERRIDE;
|
|
|
|
virtual nsresult Seek(int64_t aTime,
|
|
int64_t aStartTime,
|
|
int64_t aEndTime,
|
|
int64_t aCurrentTime) MOZ_OVERRIDE;
|
|
|
|
virtual void OnDecodeThreadStart() MOZ_OVERRIDE;
|
|
virtual void OnDecodeThreadFinish() MOZ_OVERRIDE;
|
|
|
|
private:
|
|
// Initializes mLayersBackendType if possible.
|
|
void InitLayersBackendType();
|
|
|
|
MP4SampleQueue& SampleQueue(mp4_demuxer::TrackType aTrack);
|
|
|
|
// 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 Decode(mp4_demuxer::TrackType aTrack,
|
|
nsAutoPtr<MediaData>& aOutData);
|
|
|
|
MediaDataDecoder* Decoder(mp4_demuxer::TrackType aTrack);
|
|
|
|
bool SkipVideoDemuxToNextKeyFrame(int64_t aTimeThreshold, uint32_t& parsed);
|
|
|
|
nsAutoPtr<mp4_demuxer::MP4Demuxer> mDemuxer;
|
|
nsAutoPtr<MP4Stream> mMP4Stream;
|
|
nsAutoPtr<PlatformDecoderModule> mPlatform;
|
|
nsAutoPtr<MediaDataDecoder> mVideoDecoder;
|
|
nsAutoPtr<MediaDataDecoder> mAudioDecoder;
|
|
|
|
MP4SampleQueue mCompressedAudioQueue;
|
|
MP4SampleQueue mCompressedVideoQueue;
|
|
|
|
layers::LayersBackend mLayersBackendType;
|
|
|
|
bool mHasAudio;
|
|
bool mHasVideo;
|
|
};
|
|
|
|
} // namespace mozilla
|
|
|
|
#endif
|