mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
883849ee32
This patch was automatically generated using the following script: function convert() { echo "Converting $1 to $2..." find . \ ! -wholename "*/.git*" \ ! -wholename "obj-ff-dbg*" \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert MOZ_OVERRIDE override convert MOZ_FINAL final
136 lines
3.9 KiB
C++
136 lines
3.9 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(MediaOmxReader_h_)
|
|
#define MediaOmxReader_h_
|
|
|
|
#include "MediaOmxCommonReader.h"
|
|
#include "MediaResource.h"
|
|
#include "MediaDecoderReader.h"
|
|
#include "nsMimeTypes.h"
|
|
#include "MP3FrameParser.h"
|
|
#include "nsRect.h"
|
|
#include <ui/GraphicBuffer.h>
|
|
#include <stagefright/MediaSource.h>
|
|
|
|
namespace android {
|
|
class OmxDecoder;
|
|
class MOZ_EXPORT MediaExtractor;
|
|
}
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
class TimeRanges;
|
|
}
|
|
|
|
class AbstractMediaDecoder;
|
|
|
|
class MediaOmxReader : public MediaOmxCommonReader
|
|
{
|
|
// This mutex is held when accessing the mIsShutdown variable, which is
|
|
// modified on the decode task queue and read on main and IO threads.
|
|
Mutex mShutdownMutex;
|
|
nsCString mType;
|
|
bool mHasVideo;
|
|
bool mHasAudio;
|
|
nsIntRect mPicture;
|
|
nsIntSize mInitialFrame;
|
|
int64_t mVideoSeekTimeUs;
|
|
int64_t mAudioSeekTimeUs;
|
|
int64_t mLastParserDuration;
|
|
int32_t mSkipCount;
|
|
bool mUseParserDuration;
|
|
// If mIsShutdown is false, and mShutdownMutex is held, then
|
|
// AbstractMediaDecoder::mDecoder will be non-null.
|
|
bool mIsShutdown;
|
|
protected:
|
|
android::sp<android::OmxDecoder> mOmxDecoder;
|
|
android::sp<android::MediaExtractor> mExtractor;
|
|
MP3FrameParser mMP3FrameParser;
|
|
|
|
// A cache value updated by UpdateIsWaitingMediaResources(), makes the
|
|
// "waiting resources state" is synchronous to StateMachine.
|
|
bool mIsWaitingResources;
|
|
|
|
// Called by ReadMetadata() during MediaDecoderStateMachine::DecodeMetadata()
|
|
// on decode thread. It create and initialize the OMX decoder including
|
|
// setting up custom extractor. The extractor provide the essential
|
|
// information used for creating OMX decoder such as video/audio codec.
|
|
virtual nsresult InitOmxDecoder();
|
|
|
|
// Called inside DecodeVideoFrame, DecodeAudioData, ReadMetadata and Seek
|
|
// to activate the decoder automatically.
|
|
virtual void EnsureActive();
|
|
|
|
// Check the underlying HW resources are available and store the result in
|
|
// mIsWaitingResources. The result might be changed by binder thread,
|
|
// Can only called by ReadMetadata.
|
|
void UpdateIsWaitingMediaResources();
|
|
|
|
public:
|
|
MediaOmxReader(AbstractMediaDecoder* aDecoder);
|
|
~MediaOmxReader();
|
|
|
|
virtual nsresult Init(MediaDecoderReader* aCloneDonor);
|
|
|
|
virtual void NotifyDataArrived(const char* aBuffer, uint32_t aLength, int64_t aOffset);
|
|
|
|
virtual bool DecodeAudioData();
|
|
virtual bool DecodeVideoFrame(bool &aKeyframeSkip,
|
|
int64_t aTimeThreshold);
|
|
|
|
virtual bool HasAudio()
|
|
{
|
|
return mHasAudio;
|
|
}
|
|
|
|
virtual bool HasVideo()
|
|
{
|
|
return mHasVideo;
|
|
}
|
|
|
|
// Return mIsWaitingResources.
|
|
virtual bool IsWaitingMediaResources() override;
|
|
|
|
virtual bool IsDormantNeeded() { return true;}
|
|
virtual void ReleaseMediaResources();
|
|
|
|
virtual void PreReadMetadata() override;
|
|
virtual nsresult ReadMetadata(MediaInfo* aInfo,
|
|
MetadataTags** aTags);
|
|
virtual nsRefPtr<SeekPromise>
|
|
Seek(int64_t aTime, int64_t aEndTime) override;
|
|
|
|
virtual bool IsMediaSeekable() override;
|
|
|
|
virtual void SetIdle() override;
|
|
|
|
virtual nsRefPtr<ShutdownPromise> Shutdown() override;
|
|
|
|
android::sp<android::MediaSource> GetAudioOffloadTrack();
|
|
|
|
// This method is intended only for private use but public only for
|
|
// MediaPromise::InvokeCallbackMethod().
|
|
void ReleaseDecoder();
|
|
|
|
private:
|
|
class ProcessCachedDataTask;
|
|
class NotifyDataArrivedRunnable;
|
|
|
|
bool IsShutdown() {
|
|
MutexAutoLock lock(mShutdownMutex);
|
|
return mIsShutdown;
|
|
}
|
|
|
|
int64_t ProcessCachedData(int64_t aOffset, bool aWaitForCompletion);
|
|
|
|
already_AddRefed<AbstractMediaDecoder> SafeGetDecoder();
|
|
};
|
|
|
|
} // namespace mozilla
|
|
|
|
#endif
|