Dactyloidae/dom/media/platforms/wmf/DXVA2Manager.h
EAZYBLACK 1414824320 Add VP9 Hardware Decoding with DXVA (Non-MFT), Vista+
Thanks to Maggie (imjustsomeoneiguess) on discord for helping with a lot of this VP9 media code.
This is the first browser so far to support VP9 Non MFT
2026-09-15 18:36:03 +03:00

59 lines
2 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(DXVA2Manager_h_)
#define DXVA2Manager_h_
#include "WMF.h"
#include "nsAutoPtr.h"
#include "mozilla/Mutex.h"
#include "nsRect.h"
namespace mozilla {
namespace layers {
class Image;
class ImageContainer;
class KnowsCompositor;
}
class DXVA2Manager {
public:
// Creates and initializes a DXVA2Manager. We can use DXVA2 via either
// D3D9Ex or D3D11.
static DXVA2Manager* CreateD3D9DXVA(layers::KnowsCompositor* aKnowsCompositor, nsACString& aFailureReason, const GUID* aDecoderGUID = nullptr);
static DXVA2Manager* CreateD3D11DXVA(layers::KnowsCompositor* aKnowsCompositor, nsACString& aFailureReason);
// Returns a pointer to the D3D device manager responsible for managing the
// device we're using for hardware accelerated video decoding. If we're using
// D3D9Ex, this is an IDirect3DDeviceManager9. For D3D11 this is an
// IMFDXGIDeviceManager. It is safe to call this on any thread.
virtual IUnknown* GetDXVADeviceManager() = 0;
// Creates an Image for the video frame stored in aVideoSample.
virtual HRESULT CopyToImage(IMFSample* aVideoSample,
const nsIntRect& aRegion,
layers::Image** aOutImage) = 0;
virtual HRESULT CopySurfaceToImage(IDirect3DSurface9* aSurface,
const nsIntRect& aRegion,
layers::Image** aOutImage) { return E_NOTIMPL; }
virtual HRESULT ConfigureForSize(uint32_t aWidth, uint32_t aHeight) { return S_OK; }
virtual bool IsD3D11() { return false; }
virtual ~DXVA2Manager();
virtual bool SupportsConfig(IMFMediaType* aType, float aFramerate) = 0;
protected:
Mutex mLock;
DXVA2Manager();
};
} // namespace mozilla
#endif // DXVA2Manager_h_