2023-02-08 18:12:00 +01:00
|
|
|
/* PipeWire */
|
|
|
|
|
/* SPDX-FileCopyrightText: Copyright © 2018 Wim Taymans */
|
|
|
|
|
/* SPDX-License-Identifier: MIT */
|
2018-11-23 12:43:47 +01:00
|
|
|
|
2019-01-14 12:58:23 +01:00
|
|
|
#ifndef PIPEWIRE_SPA_DEVICE_H
|
|
|
|
|
#define PIPEWIRE_SPA_DEVICE_H
|
2018-11-23 12:43:47 +01:00
|
|
|
|
|
|
|
|
#include <spa/monitor/device.h>
|
|
|
|
|
|
2019-12-11 10:57:10 +01:00
|
|
|
#include <pipewire/impl.h>
|
2018-11-23 12:43:47 +01:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
enum pw_spa_device_flags {
|
|
|
|
|
PW_SPA_DEVICE_FLAG_DISABLE = (1 << 0),
|
|
|
|
|
PW_SPA_DEVICE_FLAG_NO_REGISTER = (1 << 1),
|
|
|
|
|
};
|
|
|
|
|
|
2019-12-11 11:34:02 +01:00
|
|
|
struct pw_impl_device *
|
2019-12-10 18:19:56 +01:00
|
|
|
pw_spa_device_new(struct pw_context *context,
|
2018-11-23 12:43:47 +01:00
|
|
|
enum pw_spa_device_flags flags,
|
|
|
|
|
struct spa_device *device,
|
|
|
|
|
struct spa_handle *handle,
|
|
|
|
|
struct pw_properties *properties,
|
|
|
|
|
size_t user_data_size);
|
|
|
|
|
|
2019-12-11 11:34:02 +01:00
|
|
|
struct pw_impl_device *
|
2019-12-10 18:19:56 +01:00
|
|
|
pw_spa_device_load(struct pw_context *context,
|
2018-11-23 12:43:47 +01:00
|
|
|
const char *factory_name,
|
|
|
|
|
enum pw_spa_device_flags flags,
|
|
|
|
|
struct pw_properties *properties,
|
|
|
|
|
size_t user_data_size);
|
|
|
|
|
|
2019-12-11 11:34:02 +01:00
|
|
|
void *pw_spa_device_get_user_data(struct pw_impl_device *device);
|
2018-11-23 12:43:47 +01:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2019-01-14 12:58:23 +01:00
|
|
|
#endif /* PIPEWIRE_SPA_DEVICE_H */
|