diff options
author | Matthias Vogelgesang <matthias.vogelgesang@ipe.fzk.de> | 2011-03-08 13:56:00 +0100 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@ipe.fzk.de> | 2011-03-08 13:56:00 +0100 |
commit | c7b0d014b3a568ceb2db5d582a57cb7002face5e (patch) | |
tree | 7d2faff2da40e016b1980472d96e6d6fc1afab40 /src/uca.c | |
parent | 3804fd2355997cc5d2b811ffcbc546a367aa2b48 (diff) | |
download | uca-c7b0d014b3a568ceb2db5d582a57cb7002face5e.tar.gz uca-c7b0d014b3a568ceb2db5d582a57cb7002face5e.tar.bz2 uca-c7b0d014b3a568ceb2db5d582a57cb7002face5e.tar.xz uca-c7b0d014b3a568ceb2db5d582a57cb7002face5e.zip |
Add more offset properties
Diffstat (limited to 'src/uca.c')
-rw-r--r-- | src/uca.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -46,7 +46,11 @@ static struct uca_property_t property_map[UCA_PROP_LAST+1] = { { "image.height.min", uca_pixel, uca_uint32t, uca_read }, { "image.height.max", uca_pixel, uca_uint32t, uca_read }, { "image.offset.x", uca_pixel, uca_uint32t, uca_readwrite }, + { "image.offset.x.min", uca_pixel, uca_uint32t, uca_read }, + { "image.offset.x.max", uca_pixel, uca_uint32t, uca_read }, { "image.offset.y", uca_pixel, uca_uint32t, uca_readwrite }, + { "image.offset.y.min", uca_pixel, uca_uint32t, uca_read }, + { "image.offset.y.max", uca_pixel, uca_uint32t, uca_read }, { "image.bitdepth", uca_bits, uca_uint8t, uca_read}, { "time.exposure", uca_us, uca_uint32t, uca_readwrite }, { "time.exposure.min", uca_ns, uca_uint32t, uca_read }, |