mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-12-15 05:42:28 +00:00
30 lines
1,000 B
C++
30 lines
1,000 B
C++
#pragma once
|
|
|
|
#include "renderer.h"
|
|
|
|
#include <SDL_ttf.h>
|
|
|
|
class SdlRenderer : public IFFmpegRenderer {
|
|
public:
|
|
SdlRenderer();
|
|
virtual ~SdlRenderer() override;
|
|
virtual bool initialize(PDECODER_PARAMETERS params) override;
|
|
virtual bool prepareDecoderContext(AVCodecContext* context, AVDictionary** options) override;
|
|
virtual void renderFrame(AVFrame* frame) override;
|
|
virtual void notifyOverlayUpdated(Overlay::OverlayType) override;
|
|
virtual bool isRenderThreadSupported() override;
|
|
virtual bool isPixelFormatSupported(int videoFormat, enum AVPixelFormat pixelFormat) override;
|
|
|
|
private:
|
|
void renderOverlay(Overlay::OverlayType type);
|
|
|
|
SDL_Renderer* m_Renderer;
|
|
SDL_Texture* m_Texture;
|
|
int m_SwPixelFormat;
|
|
QByteArray m_FontData;
|
|
TTF_Font* m_OverlayFonts[Overlay::OverlayMax];
|
|
SDL_Surface* m_OverlaySurfaces[Overlay::OverlayMax];
|
|
SDL_Texture* m_OverlayTextures[Overlay::OverlayMax];
|
|
SDL_Rect m_OverlayRects[Overlay::OverlayMax];
|
|
};
|
|
|