2018-07-13 02:28:10 -07:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "renderer.h"
|
2018-08-15 23:20:56 -07:00
|
|
|
#include "pacer/pacer.h"
|
2018-07-13 02:28:10 -07:00
|
|
|
|
|
|
|
#include <d3d9.h>
|
2019-01-19 23:05:56 -08:00
|
|
|
#include <d3dx9.h>
|
2018-07-13 02:28:10 -07:00
|
|
|
#include <dxva2api.h>
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
#include <libavcodec/dxva2.h>
|
|
|
|
}
|
|
|
|
|
2018-08-15 23:57:03 -07:00
|
|
|
class DXVA2Renderer : public IFFmpegRenderer
|
2018-07-13 02:28:10 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
DXVA2Renderer();
|
|
|
|
virtual ~DXVA2Renderer();
|
|
|
|
virtual bool initialize(SDL_Window* window,
|
|
|
|
int videoFormat,
|
|
|
|
int width,
|
2018-08-15 20:41:19 -07:00
|
|
|
int height,
|
2018-08-20 18:19:42 -07:00
|
|
|
int maxFps,
|
|
|
|
bool enableVsync);
|
2018-07-13 02:28:10 -07:00
|
|
|
virtual bool prepareDecoderContext(AVCodecContext* context);
|
2018-08-15 23:20:56 -07:00
|
|
|
virtual void renderFrameAtVsync(AVFrame* frame);
|
2018-08-19 00:59:04 -07:00
|
|
|
virtual bool needsTestFrame();
|
2018-08-25 12:38:04 -07:00
|
|
|
virtual int getDecoderCapabilities();
|
2018-12-25 12:57:00 -08:00
|
|
|
virtual FramePacingConstraint getFramePacingConstraint();
|
2018-07-13 02:28:10 -07:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool initializeDecoder();
|
|
|
|
bool initializeRenderer();
|
2018-08-20 18:19:42 -07:00
|
|
|
bool initializeDevice(SDL_Window* window, bool enableVsync);
|
2019-01-19 23:05:56 -08:00
|
|
|
bool initializeOverlay();
|
2018-07-31 18:09:09 -07:00
|
|
|
bool isDecoderBlacklisted();
|
2018-07-13 02:28:10 -07:00
|
|
|
|
|
|
|
static
|
|
|
|
AVBufferRef* ffPoolAlloc(void* opaque, int size);
|
|
|
|
|
|
|
|
static
|
|
|
|
void ffPoolDummyDelete(void*, uint8_t*);
|
|
|
|
|
|
|
|
static
|
|
|
|
int ffGetBuffer2(AVCodecContext* context, AVFrame* frame, int flags);
|
|
|
|
|
|
|
|
int m_VideoFormat;
|
2018-07-18 19:10:14 -07:00
|
|
|
int m_VideoWidth;
|
|
|
|
int m_VideoHeight;
|
|
|
|
|
|
|
|
int m_DisplayWidth;
|
|
|
|
int m_DisplayHeight;
|
2018-07-13 02:28:10 -07:00
|
|
|
|
|
|
|
struct dxva_context m_DXVAContext;
|
|
|
|
IDirect3DSurface9* m_DecSurfaces[19];
|
|
|
|
DXVA2_ConfigPictureDecode m_Config;
|
|
|
|
IDirectXVideoDecoderService* m_DecService;
|
|
|
|
IDirectXVideoDecoder* m_Decoder;
|
|
|
|
int m_SurfacesUsed;
|
|
|
|
AVBufferPool* m_Pool;
|
|
|
|
|
2018-08-19 21:53:39 -07:00
|
|
|
IDirect3DDevice9Ex* m_Device;
|
2018-07-13 02:28:10 -07:00
|
|
|
IDirect3DSurface9* m_RenderTarget;
|
|
|
|
IDirectXVideoProcessorService* m_ProcService;
|
|
|
|
IDirectXVideoProcessor* m_Processor;
|
|
|
|
DXVA2_ValueRange m_BrightnessRange;
|
|
|
|
DXVA2_ValueRange m_ContrastRange;
|
|
|
|
DXVA2_ValueRange m_HueRange;
|
|
|
|
DXVA2_ValueRange m_SaturationRange;
|
|
|
|
DXVA2_VideoDesc m_Desc;
|
|
|
|
REFERENCE_TIME m_FrameIndex;
|
2019-01-19 23:05:56 -08:00
|
|
|
LPD3DXFONT m_OverlayFont;
|
2019-01-20 14:08:53 -08:00
|
|
|
bool m_BlockingPresent;
|
2018-07-13 02:28:10 -07:00
|
|
|
};
|