summaryrefslogtreecommitdiffstats
path: root/test/grab.c
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2011-04-26 17:20:03 +0200
committerMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2011-04-26 17:20:03 +0200
commitbf265341fea65c31992497338eccfab5bfdf217f (patch)
tree6937b7e1383a44014256833545e7b79a22a878a2 /test/grab.c
parent56d716f47fac506ccaca0cdd934dc2bc1ee6644a (diff)
downloaduca-bf265341fea65c31992497338eccfab5bfdf217f.tar.gz
uca-bf265341fea65c31992497338eccfab5bfdf217f.tar.bz2
uca-bf265341fea65c31992497338eccfab5bfdf217f.tar.xz
uca-bf265341fea65c31992497338eccfab5bfdf217f.zip
Make uca_camera really private and thus breaks API
Diffstat (limited to 'test/grab.c')
-rw-r--r--test/grab.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/grab.c b/test/grab.c
index c8a6153..b0bd0ee 100644
--- a/test/grab.c
+++ b/test/grab.c
@@ -20,26 +20,26 @@ int main(int argc, char *argv[])
struct uca_camera *cam = u->cameras;
uint32_t val = 5000;
- handle_error(cam->set_property(cam, UCA_PROP_EXPOSURE, &val));
+ handle_error(uca_cam_set_property(cam, UCA_PROP_EXPOSURE, &val));
val = 0;
- handle_error(cam->set_property(cam, UCA_PROP_DELAY, &val));
+ handle_error(uca_cam_set_property(cam, UCA_PROP_DELAY, &val));
val = 1;
- handle_error(cam->set_property(cam, UCA_PROP_GRAB_SYNCHRONOUS, &val));
+ handle_error(uca_cam_set_property(cam, UCA_PROP_GRAB_SYNCHRONOUS, &val));
uint32_t width, height, bits;
- handle_error(cam->get_property(cam, UCA_PROP_WIDTH, &width, 0));
- handle_error(cam->get_property(cam, UCA_PROP_HEIGHT, &height, 0));
- handle_error(cam->get_property(cam, UCA_PROP_BITDEPTH, &bits, 0));
+ handle_error(uca_cam_get_property(cam, UCA_PROP_WIDTH, &width, 0));
+ handle_error(uca_cam_get_property(cam, UCA_PROP_HEIGHT, &height, 0));
+ handle_error(uca_cam_get_property(cam, UCA_PROP_BITDEPTH, &bits, 0));
handle_error(uca_cam_alloc(cam, 10));
const int pixel_size = bits == 8 ? 1 : 2;
uint16_t *buffer = (uint16_t *) malloc(width * height * pixel_size);
- handle_error(cam->start_recording(cam));
- handle_error(cam->grab(cam, (char *) buffer, NULL));
- handle_error(cam->stop_recording(cam));
+ handle_error(uca_cam_start_recording(cam));
+ handle_error(uca_cam_grab(cam, (char *) buffer, NULL));
+ handle_error(uca_cam_stop_recording(cam));
uca_destroy(u);
FILE *fp = fopen("out.raw", "wb");