gecko/dom/media/raw/RawReader.h
Bobby Holley 84e3dfc343 Bug 1178938 - Introduce a new mechanism for iterative work and prototype it with RawReader. r=jww
The current model can hog the task queue indefinitely, and relies on synchronously
reading cross-thread state in order to detect shutdown conditions. In order to stop
doing that, we need a different model. Thankfully, MediaPromises/closures make this
a lot more concise than it could be.
2015-07-02 12:38:43 -07:00

62 lines
1.5 KiB
C++

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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(RawReader_h_)
#define RawReader_h_
#include "MediaDecoderReader.h"
#include "RawStructs.h"
namespace mozilla {
class RawReader : public MediaDecoderReader
{
public:
explicit RawReader(AbstractMediaDecoder* aDecoder);
protected:
~RawReader();
public:
virtual nsresult Init(MediaDecoderReader* aCloneDonor) override;
virtual nsresult ResetDecode() override;
virtual bool DecodeAudioData() override;
virtual bool DecodeVideoFrame(bool &aKeyframeSkip,
int64_t aTimeThreshold) override;
virtual bool HasAudio() override
{
return false;
}
virtual bool HasVideo() override
{
return true;
}
virtual nsresult ReadMetadata(MediaInfo* aInfo,
MetadataTags** aTags) override;
virtual nsRefPtr<SeekPromise>
Seek(int64_t aTime, int64_t aEndTime) override;
virtual media::TimeIntervals GetBuffered() override;
virtual bool IsMediaSeekable() override;
private:
bool ReadFromResource(MediaResource *aResource, uint8_t *aBuf, uint32_t aLength);
RawVideoHeader mMetadata;
uint32_t mCurrentFrame;
double mFrameRate;
uint32_t mFrameSize;
nsIntRect mPicture;
};
} // namespace mozilla
#endif