mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-16 16:27:59 +00:00
51 lines
1.1 KiB
C++
51 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include "renderer.h"
|
|
|
|
// Avoid X11 if SDL was built without it
|
|
#ifndef SDL_VIDEO_DRIVER_X11
|
|
#warning Unable to use libva-x11 without SDL support
|
|
#undef HAVE_LIBVA_X11
|
|
#endif
|
|
|
|
// Avoid Wayland if SDL was built without it
|
|
#ifndef SDL_VIDEO_DRIVER_WAYLAND
|
|
#warning Unable to use libva-wayland without SDL support
|
|
#undef HAVE_LIBVA_WAYLAND
|
|
#endif
|
|
|
|
extern "C" {
|
|
#include <va/va.h>
|
|
#ifdef HAVE_LIBVA_X11
|
|
#include <va/va_x11.h>
|
|
#endif
|
|
#ifdef HAVE_LIBVA_WAYLAND
|
|
#include <va/va_wayland.h>
|
|
#endif
|
|
#include <libavutil/hwcontext_vaapi.h>
|
|
}
|
|
|
|
class VAAPIRenderer : public IFFmpegRenderer
|
|
{
|
|
public:
|
|
VAAPIRenderer();
|
|
virtual ~VAAPIRenderer() override;
|
|
virtual bool initialize(PDECODER_PARAMETERS params) override;
|
|
virtual bool prepareDecoderContext(AVCodecContext* context) override;
|
|
virtual void renderFrame(AVFrame* frame) override;
|
|
virtual bool needsTestFrame() override;
|
|
virtual bool isDirectRenderingSupported() override;
|
|
|
|
private:
|
|
int m_WindowSystem;
|
|
AVBufferRef* m_HwContext;
|
|
|
|
#ifdef HAVE_LIBVA_X11
|
|
Window m_XWindow;
|
|
#endif
|
|
|
|
int m_VideoWidth;
|
|
int m_VideoHeight;
|
|
int m_DisplayWidth;
|
|
int m_DisplayHeight;
|
|
};
|