mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-18 10:32:38 +00:00
19 lines
425 B
C++
19 lines
425 B
C++
#pragma once
|
|
|
|
#include "renderer.h"
|
|
|
|
class VTRenderer : public IRenderer
|
|
{
|
|
public:
|
|
VTRenderer();
|
|
virtual ~VTRenderer();
|
|
virtual bool initialize(SDL_Window* window,
|
|
int videoFormat,
|
|
int width,
|
|
int height);
|
|
virtual bool prepareDecoderContext(AVCodecContext* context);
|
|
virtual void renderFrame(AVFrame* frame);
|
|
|
|
private:
|
|
};
|