From a928623c86b19025f0bc63720e45d4ca4b3ad98c Mon Sep 17 00:00:00 2001 From: Matthias Vogelgesang Date: Mon, 25 Jul 2011 15:29:43 +0200 Subject: Add simple grabber only accessed using framegrabber --- src/uca.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/uca.c') diff --git a/src/uca.c b/src/uca.c index 7a9d628..ec8ad07 100644 --- a/src/uca.c +++ b/src/uca.c @@ -30,6 +30,10 @@ #include "cameras/ipe.h" #endif +#ifdef HAVE_SIMPLE_CAMERA +#include "cameras/simple.h" +#endif + const char *uca_unit_map[] = { "px", "bits", @@ -133,6 +137,9 @@ struct uca *uca_init(const char *config_filename) #endif #ifdef HAVE_DUMMY_CAMERA uca_dummy_init, +#endif +#ifdef HAVE_SIMPLE_CAMERA + uca_simple_init, #endif NULL }; -- cgit v1.2.3