/* -*- 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/. */ #ifndef ChromiumCDMVideoDecoder_h_ #define ChromiumCDMVideoDecoder_h_ #include "ChromiumCDMParent.h" #include "PlatformDecoderModule.h" #include "mozilla/layers/KnowsCompositor.h" namespace mozilla { class CDMProxy; struct GMPVideoDecoderParams; DDLoggedTypeDeclNameAndBase(ChromiumCDMVideoDecoder, MediaDataDecoder); class ChromiumCDMVideoDecoder final : public MediaDataDecoder, public DecoderDoctorLifeLogger { public: NS_INLINE_DECL_THREADSAFE_REFCOUNTING(ChromiumCDMVideoDecoder, final); ChromiumCDMVideoDecoder(const GMPVideoDecoderParams& aParams, CDMProxy* aCDMProxy); RefPtr Init() override; RefPtr Decode(MediaRawData* aSample) override; RefPtr Flush() override; RefPtr Drain() override; RefPtr Shutdown() override; nsCString GetDescriptionName() const override; nsCString GetCodecName() const override; ConversionRequired NeedsConversion() const override; private: ~ChromiumCDMVideoDecoder(); RefPtr mCDMParent; const VideoInfo mConfig; RefPtr mCrashHelper; nsCOMPtr mGMPThread; RefPtr mImageContainer; RefPtr mKnowsCompositor; MozPromiseHolder mInitPromise; bool mConvertToAnnexB = false; }; } // namespace mozilla #endif // ChromiumCDMVideoDecoder_h_