diff options
author | Matthias Vogelgesang <matthias.vogelgesang@ipe.fzk.de> | 2011-02-28 11:32:44 +0100 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@ipe.fzk.de> | 2011-02-28 11:32:44 +0100 |
commit | 49cf589ca2fdcbd9ff55ae70040d6d52c57a3fb1 (patch) | |
tree | 589601f08f4b0fff66786f14cc60ed17dfaa096b /src/uca.h | |
parent | cdca4954a292dc53b67fa616bad94ad9c2f31e54 (diff) | |
download | uca-49cf589ca2fdcbd9ff55ae70040d6d52c57a3fb1.tar.gz uca-49cf589ca2fdcbd9ff55ae70040d6d52c57a3fb1.tar.bz2 uca-49cf589ca2fdcbd9ff55ae70040d6d52c57a3fb1.tar.xz uca-49cf589ca2fdcbd9ff55ae70040d6d52c57a3fb1.zip |
Add camera state and accessor function
Diffstat (limited to 'src/uca.h')
-rw-r--r-- | src/uca.h | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -17,6 +17,8 @@ struct uca_t; struct uca_camera_t; struct uca_property_t; +enum uca_camera_state; + /** * \brief Camera probing and initialization * \return UCA_ERR_INIT_NOT_FOUND if camera is not found or could not be initialized @@ -65,6 +67,9 @@ struct uca_t *uca_init(void); */ void uca_destroy(struct uca_t *uca); +enum uca_cam_state uca_get_camera_state(struct uca_camera_t *cam); + + /** * \brief Convert a property string to the corresponding ID */ @@ -154,6 +159,13 @@ struct uca_property_t { } type; }; +enum uca_cam_state { + UCA_CAM_ERROR, + UCA_CAM_CONFIGURABLE, + UCA_CAM_ARMED, + UCA_CAM_RECORDING, +}; + struct uca_camera_t { struct uca_camera_t *next; @@ -165,6 +177,7 @@ struct uca_camera_t { /* Private */ uca_cam_destroy destroy; + enum uca_cam_state state; void *user; /**< private user data to be used by the camera driver */ }; |