diff options
author | Matthias Vogelgesang <matthias.vogelgesang@ipe.fzk.de> | 2011-02-25 11:31:57 +0100 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@ipe.fzk.de> | 2011-02-25 11:31:57 +0100 |
commit | b32564991609717631b2b3926dccd9db21c28f46 (patch) | |
tree | 8ab917c014ddcea753c8b2bd2cf37c712d314dd8 /src/uca.c | |
parent | 754c7d8ecc74513dc3e4765964dc9ff210e6f7af (diff) | |
download | uca-b32564991609717631b2b3926dccd9db21c28f46.tar.gz uca-b32564991609717631b2b3926dccd9db21c28f46.tar.bz2 uca-b32564991609717631b2b3926dccd9db21c28f46.tar.xz uca-b32564991609717631b2b3926dccd9db21c28f46.zip |
Update property names
Diffstat (limited to 'src/uca.c')
-rw-r--r-- | src/uca.c | 27 |
1 files changed, 19 insertions, 8 deletions
@@ -33,6 +33,8 @@ struct uca_t *uca_init() /* Set all function pointers to NULL and thus make the class abstract */ uca->cam_set_property = NULL; uca->cam_get_property = NULL; + uca->cam_alloc = NULL; + uca->cam_acquire_image = NULL; int i = 0; while (inits[i] != NULL) { @@ -58,19 +60,28 @@ void uca_destroy(struct uca_t *uca) static const char* property_map[] = { "name", "width", + "width.min", + "width.max", "height", - "x-offset", - "y-offset", - "max-width", - "max-height", + "height.min", + "height.max", + "offset.x", + "offset.y", "bit-depth", "exposure", + "exposure.min", + "exposure.max", "delay", - "frame-rate", + "delay.min", + "delay.max", "trigger-mode", - "interlace-sample-rate", - "interlace-pixel-threshold", - "interlace-row-threshold", + "frame-rate", + "timestamp-mode", + "scan-mode", + "interlace.sample-rate", + "interlace.threshold.pixel", + "interlace.threshold.row", + "correction-mode", NULL }; |