mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-12-15 22:02:29 +00:00
25 lines
677 B
C++
25 lines
677 B
C++
#pragma once
|
|
|
|
#include "renderer.h"
|
|
|
|
#include <xf86drm.h>
|
|
#include <xf86drmMode.h>
|
|
|
|
class DrmRenderer : public IFFmpegRenderer {
|
|
public:
|
|
DrmRenderer();
|
|
virtual ~DrmRenderer() override;
|
|
virtual bool initialize(PDECODER_PARAMETERS params) override;
|
|
virtual bool prepareDecoderContext(AVCodecContext* context, AVDictionary** options) override;
|
|
virtual void renderFrame(AVFrame* frame) override;
|
|
virtual enum AVPixelFormat getPreferredPixelFormat(int videoFormat) override;
|
|
virtual int getRendererAttributes() override;
|
|
|
|
private:
|
|
int m_DrmFd;
|
|
uint32_t m_CrtcId;
|
|
uint32_t m_PlaneId;
|
|
uint32_t m_CurrentFbId;
|
|
SDL_Rect m_OutputRect;
|
|
};
|
|
|