summaryrefslogtreecommitdiff
path: root/src/libcamera/proxy
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-08-18 03:11:27 +0300
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-08-19 18:07:30 +0300
commit4403a667892a49f1bba1ff3b6164ff1e1633ecdd (patch)
tree093e6ed199b5712536977a8ca85d39941bd6c3d0 /src/libcamera/proxy
parentd0cf81656939012b693931b721a1c276935d8358 (diff)
libcamera: proxy: Get event dispatcher from current thread
Get the event dispatcher from the current thread instead of the camera manager. This prepares for the removal of CameraManager::instance(). Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Diffstat (limited to 'src/libcamera/proxy')
-rw-r--r--src/libcamera/proxy/worker/ipa_proxy_linux_worker.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcamera/proxy/worker/ipa_proxy_linux_worker.cpp b/src/libcamera/proxy/worker/ipa_proxy_linux_worker.cpp
index c43b088a..ffba3ae4 100644
--- a/src/libcamera/proxy/worker/ipa_proxy_linux_worker.cpp
+++ b/src/libcamera/proxy/worker/ipa_proxy_linux_worker.cpp
@@ -9,7 +9,6 @@
#include <sys/types.h>
#include <unistd.h>
-#include <libcamera/camera_manager.h>
#include <libcamera/event_dispatcher.h>
#include <libcamera/ipa/ipa_interface.h>
#include <libcamera/logging.h>
@@ -17,6 +16,7 @@
#include "ipa_module.h"
#include "ipc_unixsocket.h"
#include "log.h"
+#include "thread.h"
#include "utils.h"
using namespace libcamera;
@@ -81,7 +81,7 @@ int main(int argc, char **argv)
LOG(IPAProxyLinuxWorker, Debug) << "Proxy worker successfully started";
/* \todo upgrade listening loop */
- EventDispatcher *dispatcher = CameraManager::instance()->eventDispatcher();
+ EventDispatcher *dispatcher = Thread::current()->eventDispatcher();
while (1)
dispatcher->processEvents();