summaryrefslogtreecommitdiff
path: root/test/libtest
diff options
context:
space:
mode:
authorPaul Elder <paul.elder@ideasonboard.com>2019-07-02 23:48:21 +0900
committerPaul Elder <paul.elder@ideasonboard.com>2019-07-12 16:32:29 +0900
commitc2a8217df54c2c522047ee716228c9dd4fc1dd32 (patch)
treea8c7c3232c573645f4e927e6d0ae2dc8c381db6a /test/libtest
parent3d20beca6616095b2bc2952d645e7562410e79e5 (diff)
libcamera: add IPA proxy
Add an IPAProxy class whose implementations will act as a proxy between a pipeline handler and an isolated IPA interface. Also add an IPAProxyFactory that will construct the IPAProxy implementations as necessary. Update Doxygen to ignore the directory where IPAProxy implementations will reside. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'test/libtest')
-rw-r--r--test/libtest/test.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/libtest/test.cpp b/test/libtest/test.cpp
index b119cf19..333d2160 100644
--- a/test/libtest/test.cpp
+++ b/test/libtest/test.cpp
@@ -25,6 +25,10 @@ int Test::execute()
if (ret)
return errno;
+ ret = setenv("LIBCAMERA_IPA_PROXY_PATH", "src/libcamera/proxy/worker", 1);
+ if (ret)
+ return errno;
+
ret = init();
if (ret)
return ret;