V4L2/MF changes

This commit is contained in:
Paulchen Panther
2021-05-16 15:47:25 +02:00
parent bf32557a8a
commit cfb34e6bfc
19 changed files with 426 additions and 537 deletions

View File

@@ -67,6 +67,11 @@ public:
///
virtual QStringList getActive(int inst) const;
virtual bool getSysGrabberState(){ return GLOBAL_GRABBER_SYS_ENABLE; }
virtual void setSysGrabberState(bool sysGrabberState){ GLOBAL_GRABBER_SYS_ENABLE = sysGrabberState; }
virtual bool getV4lGrabberState(){ return GLOBAL_GRABBER_V4L_ENABLE; }
virtual void setV4lGrabberState(bool v4lGrabberState){ GLOBAL_GRABBER_V4L_ENABLE = v4lGrabberState; }
static QStringList availableGrabbers();
public: