PipeWire 0.3.65
impl-device.h
Go to the documentation of this file.
1/* PipeWire
2 *
3 * Copyright © 2018 Wim Taymans
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 */
24
25#ifndef PIPEWIRE_IMPL_DEVICE_H
26#define PIPEWIRE_IMPL_DEVICE_H
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
46struct pw_impl_device;
47
48#include <spa/monitor/device.h>
49
51#include <pipewire/global.h>
52#include <pipewire/properties.h>
53#include <pipewire/resource.h>
54
57#define PW_VERSION_IMPL_DEVICE_EVENTS 0
58 uint32_t version;
59
61 void (*destroy) (void *data);
63 void (*free) (void *data);
65 void (*initialized) (void *data);
66
68 void (*info_changed) (void *data, const struct pw_device_info *info);
69};
70
72 struct pw_properties *properties,
73 size_t user_data_size);
76 struct pw_properties *properties);
77
78void pw_impl_device_destroy(struct pw_impl_device *device);
79
81
86
89
92 struct spa_hook *listener,
93 const struct pw_impl_device_events *events,
94 void *data);
95
96int pw_impl_device_update_properties(struct pw_impl_device *device, const struct spa_dict *dict);
97
99
101 int seq, uint32_t param_id,
102 uint32_t index, uint32_t max,
103 const struct spa_pod *filter,
104 int (*callback) (void *data, int seq,
105 uint32_t id, uint32_t index, uint32_t next,
106 struct spa_pod *param),
107 void *data);
112#ifdef __cplusplus
113}
114#endif
115
116#endif /* PIPEWIRE_IMPL_DEVICE_H */
pipewire/global.h
void * pw_impl_device_get_user_data(struct pw_impl_device *device)
Definition: impl-device.c:917
void pw_impl_device_destroy(struct pw_impl_device *device)
Definition: impl-device.c:196
struct spa_device * pw_impl_device_get_implementation(struct pw_impl_device *device)
Get the device implementation.
Definition: impl-device.c:897
int pw_impl_device_set_implementation(struct pw_impl_device *device, struct spa_device *spa_device)
Set the device implementation.
Definition: impl-device.c:880
const struct pw_properties * pw_impl_device_get_properties(struct pw_impl_device *device)
Definition: impl-device.c:903
int pw_impl_device_register(struct pw_impl_device *device, struct pw_properties *properties)
Definition: impl-device.c:557
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:929
struct pw_global * pw_impl_device_get_global(struct pw_impl_device *device)
Get the global of this device.
Definition: impl-device.c:923
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:295
int pw_impl_device_update_properties(struct pw_impl_device *device, const struct spa_dict *dict)
Definition: impl-device.c:909
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:143
pipewire/properties.h
pipewire/resource.h
spa/monitor/device.h
pipewire/context.h
The device information.
Definition: src/pipewire/device.h:59
Device events, listen to them with pw_impl_device_add_listener.
Definition: impl-device.h:61
void(* free)(void *data)
the device is freed
Definition: impl-device.h:69
void(* destroy)(void *data)
the device is destroyed
Definition: impl-device.h:67
void(* initialized)(void *data)
the device is initialized
Definition: impl-device.h:71
uint32_t version
Definition: impl-device.h:64
void(* info_changed)(void *data, const struct pw_device_info *info)
the device info changed
Definition: impl-device.h:74
Definition: properties.h:53
Definition: spa/include/spa/monitor/device.h:60
Definition: utils/dict.h:59
A hook, contains the structure with functions and the data passed to the functions.
Definition: hook.h:351
Definition: pod/pod.h:63