2023-02-08 18:12:00 +01:00
|
|
|
/* Spa libcamera support */
|
|
|
|
|
/* SPDX-FileCopyrightText: Copyright © 2020 collabora */
|
|
|
|
|
/* SPDX-License-Identifier: MIT */
|
2020-04-20 12:26:50 +05:30
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
|
|
#include <linux/media.h>
|
|
|
|
|
|
2021-10-03 12:26:00 +02:00
|
|
|
#include <spa/support/log.h>
|
2021-11-02 17:24:19 +01:00
|
|
|
#include <spa/support/system.h>
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
|
|
extern const struct spa_handle_factory spa_libcamera_source_factory;
|
|
|
|
|
extern const struct spa_handle_factory spa_libcamera_manager_factory;
|
|
|
|
|
extern const struct spa_handle_factory spa_libcamera_device_factory;
|
2021-10-03 12:26:00 +02:00
|
|
|
|
|
|
|
|
#undef SPA_LOG_TOPIC_DEFAULT
|
2023-10-06 12:41:55 +02:00
|
|
|
#define SPA_LOG_TOPIC_DEFAULT &libcamera_log_topic
|
|
|
|
|
extern struct spa_log_topic libcamera_log_topic;
|
2021-10-03 12:26:00 +02:00
|
|
|
|
|
|
|
|
static inline void libcamera_log_topic_init(struct spa_log *log)
|
|
|
|
|
{
|
2023-10-06 12:41:55 +02:00
|
|
|
spa_log_topic_init(log, &libcamera_log_topic);
|
2021-10-03 12:26:00 +02:00
|
|
|
}
|
|
|
|
|
|
2021-11-02 17:24:19 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif /* __cplusplus */
|