mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-16 16:27:59 +00:00
38 lines
1 KiB
C++
38 lines
1 KiB
C++
#pragma once
|
|
|
|
#include <SDL.h>
|
|
|
|
extern "C" {
|
|
#include <libavcodec/avcodec.h>
|
|
}
|
|
|
|
class IFFmpegRenderer {
|
|
public:
|
|
virtual ~IFFmpegRenderer() {}
|
|
virtual bool initialize(SDL_Window* window,
|
|
int videoFormat,
|
|
int width,
|
|
int height,
|
|
int maxFps) = 0;
|
|
virtual bool prepareDecoderContext(AVCodecContext* context) = 0;
|
|
virtual void renderFrameAtVsync(AVFrame* frame) = 0;
|
|
virtual bool needsTestFrame() = 0;
|
|
};
|
|
|
|
class SdlRenderer : public IFFmpegRenderer {
|
|
public:
|
|
SdlRenderer();
|
|
virtual ~SdlRenderer();
|
|
virtual bool initialize(SDL_Window* window,
|
|
int videoFormat,
|
|
int width,
|
|
int height,
|
|
int maxFps);
|
|
virtual bool prepareDecoderContext(AVCodecContext* context);
|
|
virtual void renderFrameAtVsync(AVFrame* frame);
|
|
virtual bool needsTestFrame();
|
|
|
|
private:
|
|
SDL_Renderer* m_Renderer;
|
|
SDL_Texture* m_Texture;
|
|
};
|