mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-16 08:17:58 +00:00
18 lines
481 B
C++
18 lines
481 B
C++
#pragma once
|
|
|
|
#include "renderer.h"
|
|
|
|
class CUDARenderer : public IFFmpegRenderer {
|
|
public:
|
|
CUDARenderer();
|
|
virtual ~CUDARenderer() override;
|
|
virtual bool initialize(PDECODER_PARAMETERS) override;
|
|
virtual bool prepareDecoderContext(AVCodecContext* context) override;
|
|
virtual void renderFrame(AVFrame* frame) override;
|
|
virtual bool needsTestFrame() override;
|
|
virtual bool isDirectRenderingSupported() override;
|
|
|
|
private:
|
|
AVBufferRef* m_HwContext;
|
|
};
|
|
|