PipeWire 1.0.6
Loading...
Searching...
No Matches
impl-device.h
Go to the documentation of this file.
1/* PipeWire */
2/* SPDX-FileCopyrightText: Copyright © 2018 Wim Taymans */
3/* SPDX-License-Identifier: MIT */
4
5#ifndef PIPEWIRE_IMPL_DEVICE_H
6#define PIPEWIRE_IMPL_DEVICE_H
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
26struct pw_impl_device;
27
28#include <spa/monitor/device.h>
29
31#include <pipewire/global.h>
32#include <pipewire/properties.h>
33#include <pipewire/resource.h>
34
37#define PW_VERSION_IMPL_DEVICE_EVENTS 0
38 uint32_t version;
39
41 void (*destroy) (void *data);
43 void (*free) (void *data);
45 void (*initialized) (void *data);
46
48 void (*info_changed) (void *data, const struct pw_device_info *info);
49};
50
52 struct pw_properties *properties,
53 size_t user_data_size);
56 struct pw_properties *properties);
57
58void pw_impl_device_destroy(struct pw_impl_device *device);
59
61
66
69
72 struct spa_hook *listener,
73 const struct pw_impl_device_events *events,
74 void *data);
75
76int pw_impl_device_update_properties(struct pw_impl_device *device, const struct spa_dict *dict);
77
79
81 int seq, uint32_t param_id,
82 uint32_t index, uint32_t max,
83 const struct spa_pod *filter,
84 int (*callback) (void *data, int seq,
85 uint32_t id, uint32_t index, uint32_t next,
86 struct spa_pod *param),
87 void *data);
92#ifdef __cplusplus
93}
94#endif
95
96#endif /* PIPEWIRE_IMPL_DEVICE_H */
pipewire/global.h
void * pw_impl_device_get_user_data(struct pw_impl_device *device)
Definition impl-device.c:899
void pw_impl_device_destroy(struct pw_impl_device *device)
Definition impl-device.c:177
struct spa_device * pw_impl_device_get_implementation(struct pw_impl_device *device)
Get the device implementation.
Definition impl-device.c:879
int pw_impl_device_set_implementation(struct pw_impl_device *device, struct spa_device *spa_device)
Set the device implementation.
Definition impl-device.c:862
const struct pw_properties * pw_impl_device_get_properties(struct pw_impl_device *device)
Definition impl-device.c:885
int pw_impl_device_register(struct pw_impl_device *device, struct pw_properties *properties)
Definition impl-device.c:538
void pw_impl_device_add_listener(struct pw_impl_device *device, struct spa_hook *listener, const struct pw_impl_device_events *events, void *data)
Add an event listener.
Definition impl-device.c:911
struct pw_global * pw_impl_device_get_global(struct pw_impl_device *device)
Get the global of this device.
Definition impl-device.c:905
int pw_impl_device_for_each_param(struct pw_impl_device *device, int seq, uint32_t param_id, uint32_t index, uint32_t max, const struct spa_pod *filter, int(*callback)(void *data, int seq, uint32_t id, uint32_t index, uint32_t next, struct spa_pod *param), void *data)
Definition impl-device.c:276
int pw_impl_device_update_properties(struct pw_impl_device *device, const struct spa_dict *dict)
Definition impl-device.c:891
struct pw_impl_device * pw_context_create_device(struct pw_context *context, struct pw_properties *properties, size_t user_data_size)
Definition impl-device.c:124
pipewire/properties.h
pipewire/resource.h
spa/monitor/device.h
pipewire/context.h
The device information.
Definition device.h:42
Device events, listen to them with pw_impl_device_add_listener.
Definition impl-device.h:41
void(* free)(void *data)
the device is freed
Definition impl-device.h:49
void(* destroy)(void *data)
the device is destroyed
Definition impl-device.h:47
void(* initialized)(void *data)
the device is initialized
Definition impl-device.h:51
uint32_t version
Definition impl-device.h:44
void(* info_changed)(void *data, const struct pw_device_info *info)
the device info changed
Definition impl-device.h:54
Definition properties.h:33
Definition device.h:40
Definition dict.h:39
A hook, contains the structure with functions and the data passed to the functions.
Definition hook.h:350
Definition pod.h:43