mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-03-22 15:05:03 +01:00
15 lines
269 B
C++
15 lines
269 B
C++
#pragma once
|
|
#include "VideoStream.h"
|
|
|
|
class VSDev : public VideoStream
|
|
{
|
|
public:
|
|
VSDev();
|
|
int GetFrameFromStream(char **Buffer);
|
|
void FreeFrameBuffer(char *Buffer);
|
|
|
|
private:
|
|
int GetFrameCallNum = 0;
|
|
char Frame1TestBuf[102737];
|
|
char Frame2TestBuf[104143];
|
|
}; |