diff options
author | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2014-02-13 14:54:34 +0100 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2014-02-14 16:17:16 +0100 |
commit | 961e60a89bc60e760707892539ccd7c6d283ef01 (patch) | |
tree | 6e002e95258e4e736c58f5187ff93cf83579541b /src/uca-camera.h | |
parent | f15d21389a81f8df36b00113aed5c81d27143861 (diff) | |
download | libuca-961e60a89bc60e760707892539ccd7c6d283ef01.tar.gz libuca-961e60a89bc60e760707892539ccd7c6d283ef01.tar.bz2 libuca-961e60a89bc60e760707892539ccd7c6d283ef01.tar.xz libuca-961e60a89bc60e760707892539ccd7c6d283ef01.zip |
Fix #28: Add buffered recording to base class
This change adds new properties ::buffered and ::num-buffers to the base class.
If ::buffered is TRUE, uca_camera_start_recording will spawn a new thread which
will call the camera-specific grab. Any call to uca_camera_grab will return the
next item from the ring buffer.
Diffstat (limited to 'src/uca-camera.h')
-rw-r--r-- | src/uca-camera.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/uca-camera.h b/src/uca-camera.h index c11644d..3191577 100644 --- a/src/uca-camera.h +++ b/src/uca-camera.h @@ -93,6 +93,9 @@ enum { PROP_TRANSFER_ASYNCHRONOUSLY, PROP_IS_RECORDING, PROP_IS_READOUT, + + PROP_BUFFERED, + PROP_NUM_BUFFERS, N_BASE_PROPERTIES }; |