PipeWire 0.3.15
link.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_LINK_H
26#define PIPEWIRE_LINK_H
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
32#include <spa/utils/defs.h>
33#include <spa/utils/hook.h>
34
35#include <pipewire/proxy.h>
36
37#define PW_TYPE_INTERFACE_Link PW_TYPE_INFO_INTERFACE_BASE "Link"
38
39#define PW_VERSION_LINK 3
40struct pw_link;
41
51};
52
54const char * pw_link_state_as_string(enum pw_link_state state);
57 uint32_t id;
58 uint32_t output_node_id;
59 uint32_t output_port_id;
60 uint32_t input_node_id;
61 uint32_t input_port_id;
62#define PW_LINK_CHANGE_MASK_STATE (1 << 0)
63#define PW_LINK_CHANGE_MASK_FORMAT (1 << 1)
64#define PW_LINK_CHANGE_MASK_PROPS (1 << 2)
65#define PW_LINK_CHANGE_MASK_ALL ((1 << 3)-1)
66 uint64_t change_mask;
68 const char *error;
69 struct spa_pod *format;
70 struct spa_dict *props;
71};
72
73struct pw_link_info *
75 const struct pw_link_info *update);
76
77void
79
80
81#define PW_LINK_EVENT_INFO 0
82#define PW_LINK_EVENT_NUM 1
83
86#define PW_VERSION_LINK_EVENTS 0
87 uint32_t version;
93 void (*info) (void *object, const struct pw_link_info *info);
94};
95
96#define PW_LINK_METHOD_ADD_LISTENER 0
97#define PW_LINK_METHOD_NUM 1
98
101#define PW_VERSION_LINK_METHODS 0
102 uint32_t version;
103
104 int (*add_listener) (void *object,
105 struct spa_hook *listener,
106 const struct pw_link_events *events,
107 void *data);
108};
109
110#define pw_link_method(o,method,version,...) \
111({ \
112 int _res = -ENOTSUP; \
113 spa_interface_call_res((struct spa_interface*)o, \
114 struct pw_link_methods, _res, \
115 method, version, ##__VA_ARGS__); \
116 _res; \
117})
118
119#define pw_link_add_listener(c,...) pw_link_method(c,add_listener,0,__VA_ARGS__)
120
121#ifdef __cplusplus
122} /* extern "C" */
123#endif
124
125#endif /* PIPEWIRE_LINK_H */
SPA_EXPORT const char * pw_link_state_as_string(enum pw_link_state state)
Definition: introspect.c:66
Definition: filter.c:71