From c2a8217df54c2c522047ee716228c9dd4fc1dd32 Mon Sep 17 00:00:00 2001 From: Paul Elder Date: Tue, 2 Jul 2019 23:48:21 +0900 Subject: 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 Reviewed-by: Laurent Pinchart --- test/libtest/test.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test/libtest/test.cpp') 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; -- cgit v1.2.1