2023-02-08 18:12:00 +01:00
|
|
|
/* Spa V4l2 support */
|
|
|
|
|
/* SPDX-FileCopyrightText: Copyright © 2018 Wim Taymans */
|
|
|
|
|
/* SPDX-License-Identifier: MIT */
|
2016-07-05 17:58:34 +02:00
|
|
|
|
2017-11-13 09:41:41 +01:00
|
|
|
#include <errno.h>
|
|
|
|
|
|
2017-11-10 13:36:14 +01:00
|
|
|
#include <spa/support/plugin.h>
|
2021-10-03 12:12:09 +02:00
|
|
|
#include <spa/support/log.h>
|
2016-07-05 17:58:34 +02:00
|
|
|
|
2023-10-06 12:41:55 +02:00
|
|
|
#include "v4l2.h"
|
|
|
|
|
|
2017-05-25 13:28:15 +02:00
|
|
|
extern const struct spa_handle_factory spa_v4l2_source_factory;
|
2019-09-20 13:04:14 +02:00
|
|
|
extern const struct spa_handle_factory spa_v4l2_udev_factory;
|
2018-11-23 12:43:47 +01:00
|
|
|
extern const struct spa_handle_factory spa_v4l2_device_factory;
|
2016-07-05 17:58:34 +02:00
|
|
|
|
2023-10-06 12:41:55 +02:00
|
|
|
struct spa_log_topic v4l2_log_topic = SPA_LOG_TOPIC(0, "spa.v4l2");
|
2021-10-03 12:12:09 +02:00
|
|
|
|
2019-02-06 13:24:41 +01:00
|
|
|
SPA_EXPORT
|
|
|
|
|
int spa_handle_factory_enum(const struct spa_handle_factory **factory,
|
2017-11-13 09:41:41 +01:00
|
|
|
uint32_t *index)
|
2016-07-05 17:58:34 +02:00
|
|
|
{
|
2017-11-13 09:41:41 +01:00
|
|
|
spa_return_val_if_fail(factory != NULL, -EINVAL);
|
|
|
|
|
spa_return_val_if_fail(index != NULL, -EINVAL);
|
2016-07-05 17:58:34 +02:00
|
|
|
|
2017-11-13 09:41:41 +01:00
|
|
|
switch (*index) {
|
2017-05-25 13:28:15 +02:00
|
|
|
case 0:
|
|
|
|
|
*factory = &spa_v4l2_source_factory;
|
|
|
|
|
break;
|
|
|
|
|
case 1:
|
2019-09-20 13:04:14 +02:00
|
|
|
*factory = &spa_v4l2_udev_factory;
|
2017-05-25 13:28:15 +02:00
|
|
|
break;
|
2018-11-23 12:43:47 +01:00
|
|
|
case 2:
|
|
|
|
|
*factory = &spa_v4l2_device_factory;
|
|
|
|
|
break;
|
2017-05-25 13:28:15 +02:00
|
|
|
default:
|
2017-11-13 09:41:41 +01:00
|
|
|
return 0;
|
2017-05-25 13:28:15 +02:00
|
|
|
}
|
2017-11-13 09:41:41 +01:00
|
|
|
(*index)++;
|
|
|
|
|
return 1;
|
2016-07-05 17:58:34 +02:00
|
|
|
}
|