mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-06-30 13:14:16 -04:00
spa: libcamera: move CameraManager acquisition
Now that there is a "libcamera.cpp", move `libcamera_manager_acquire()` into that file since it is a common function used by all three factories.
This commit is contained in:
parent
390a4ce432
commit
6dc55d2cb4
6 changed files with 30 additions and 31 deletions
|
|
@ -2,6 +2,11 @@
|
|||
/* SPDX-FileCopyrightText: Copyright © 2020 collabora */
|
||||
/* SPDX-License-Identifier: MIT */
|
||||
|
||||
#include <memory>
|
||||
#include <mutex>
|
||||
|
||||
#include <libcamera/camera_manager.h>
|
||||
|
||||
#include <spa/support/plugin.h>
|
||||
#include <spa/support/log.h>
|
||||
|
||||
|
|
@ -38,3 +43,22 @@ int spa_handle_factory_enum(const struct spa_handle_factory **factory,
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
std::shared_ptr<libcamera::CameraManager> libcamera_manager_acquire(int& res)
|
||||
{
|
||||
static std::weak_ptr<libcamera::CameraManager> global_manager;
|
||||
static std::mutex lock;
|
||||
|
||||
std::lock_guard guard(lock);
|
||||
|
||||
if (auto manager = global_manager.lock())
|
||||
return manager;
|
||||
|
||||
auto manager = std::make_shared<libcamera::CameraManager>();
|
||||
if ((res = manager->start()) < 0)
|
||||
return {};
|
||||
|
||||
global_manager = manager;
|
||||
|
||||
return manager;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue