mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-18 10:32:38 +00:00
29 lines
425 B
C++
29 lines
425 B
C++
#include "vt.h"
|
|
|
|
VTRenderer::VTRenderer()
|
|
{
|
|
|
|
}
|
|
|
|
VTRenderer::~VTRenderer()
|
|
{
|
|
}
|
|
|
|
bool VTRenderer::prepareDecoderContext(AVCodecContext*)
|
|
{
|
|
/* Nothing to do */
|
|
return true;
|
|
}
|
|
|
|
bool VTRenderer::initialize(SDL_Window* window,
|
|
int videoFormat,
|
|
int width,
|
|
int height)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void VTRenderer::renderFrame(AVFrame* frame)
|
|
{
|
|
}
|