pipewire/spa/plugins/libcamera/libcamera.cpp
Barnabás Pőcze 390a4ce432 spa: libcamera: compile fully as C++
There was one file "libcamera.c" that was a C source file, which
prevents the addition of C++ functions, includes, etc. to "libcamera.h".
So compile that file as C++ as well.
2026-06-23 15:00:15 +00:00

40 lines
789 B
C++

/* Spa libcamera support */
/* SPDX-FileCopyrightText: Copyright © 2020 collabora */
/* SPDX-License-Identifier: MIT */
#include <spa/support/plugin.h>
#include <spa/support/log.h>
#include "libcamera.hpp"
extern "C" {
SPA_LOG_TOPIC_DEFINE(libcamera_log_topic, "spa.libcamera");
SPA_LOG_TOPIC_ENUM_DEFINE_REGISTERED;
SPA_EXPORT
int spa_handle_factory_enum(const struct spa_handle_factory **factory,
uint32_t *index)
{
spa_return_val_if_fail(factory != NULL, -EINVAL);
spa_return_val_if_fail(index != NULL, -EINVAL);
switch (*index) {
case 0:
*factory = &spa_libcamera_manager_factory;
break;
case 1:
*factory = &spa_libcamera_device_factory;
break;
case 2:
*factory = &spa_libcamera_source_factory;
break;
default:
return 0;
}
(*index)++;
return 1;
}
}