mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2026-06-18 06:30:55 +00:00
Move hw->sw frame mapping into a separate class
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
|
||||
#include "renderer.h"
|
||||
|
||||
class SwFrameMapper
|
||||
{
|
||||
public:
|
||||
explicit SwFrameMapper(IFFmpegRenderer* renderer);
|
||||
void setVideoFormat(int videoFormat);
|
||||
AVFrame* getSwFrameFromHwFrame(AVFrame* hwFrame);
|
||||
|
||||
private:
|
||||
bool initializeReadBackFormat(AVBufferRef* hwFrameCtxRef, AVFrame* testFrame);
|
||||
|
||||
IFFmpegRenderer* m_Renderer;
|
||||
int m_VideoFormat;
|
||||
enum AVPixelFormat m_SwPixelFormat;
|
||||
bool m_MapFrame;
|
||||
};
|
||||
Reference in New Issue
Block a user