mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-12-16 06:12:28 +00:00
18 lines
425 B
C++
18 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:
|
|
};
|