1234567891011121314151617181920212223 |
- #pragma once
- #include "../../Other/libvideocapture/ivideocaptureinterface.h"
- class VideoCapObj : public ICaptureCallback
- {
- public:
- VideoCapObj();
- virtual ~VideoCapObj();
- void Debug(const char* fmt, ...);
- void OnCaptureFailed();
- void OnVideoCaptureExcption();
- int Init();
- int SetVideoCaptureParam(videocap_param_t* param);
- int StartVideoCapture();
- int StopVideoCapture();
-
- private:
- IVideoCapture* m_pVideoCap;
- };
|