here have more code

This commit is contained in:
Arisotura
2022-04-29 12:48:30 +02:00
parent 5363d3bf0c
commit e878866234
2 changed files with 128 additions and 1 deletions

View File

@ -63,6 +63,10 @@ private:
bool FrameFormatYUV;
u32* FrameBuffer;
QMutex FrameMutex;
void CopyFrame_Straight(u32* src, int swidth, int sheight, u32* dst, int dwidth, int dheight, bool yuv);
void CopyFrame_RGBtoYUV(u32* src, int swidth, int sheight, u32* dst, int dwidth, int dheight);
void CopyFrame_YUVtoRGB(u32* src, int swidth, int sheight, u32* dst, int dwidth, int dheight);
};
#endif // CAMERAMANAGER_H