summaryrefslogtreecommitdiff
path: root/src/v4l2/v4l2_camera.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/v4l2/v4l2_camera.h')
-rw-r--r--src/v4l2/v4l2_camera.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/v4l2/v4l2_camera.h b/src/v4l2/v4l2_camera.h
index ee53c2b0..515e9060 100644
--- a/src/v4l2/v4l2_camera.h
+++ b/src/v4l2/v4l2_camera.h
@@ -57,9 +57,10 @@ public:
int qbuf(unsigned int index);
- bool isRunning();
+ void waitForBufferAvailable();
+ bool isBufferAvailable();
- Semaphore bufferSema_;
+ bool isRunning();
private:
void requestComplete(Request *request);
@@ -76,6 +77,10 @@ private:
std::deque<std::unique_ptr<Buffer>> completedBuffers_;
int efd_;
+
+ Mutex bufferMutex_;
+ std::condition_variable bufferCV_;
+ unsigned int bufferAvailableCount_;
};
#endif /* __V4L2_CAMERA_H__ */