PipeWire  0.3.5
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
29 extern "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
40 struct pw_link;
41 
50 };
51 
53 const char * pw_link_state_as_string(enum pw_link_state state);
55 struct pw_link_info {
56  uint32_t id;
57  uint32_t output_node_id;
58  uint32_t output_port_id;
59  uint32_t input_node_id;
60  uint32_t input_port_id;
61 #define PW_LINK_CHANGE_MASK_STATE (1 << 0)
62 #define PW_LINK_CHANGE_MASK_FORMAT (1 << 1)
63 #define PW_LINK_CHANGE_MASK_PROPS (1 << 2)
64 #define PW_LINK_CHANGE_MASK_ALL ((1 << 3)-1)
65  uint64_t change_mask;
66  enum pw_link_state state;
67  const char *error;
68  struct spa_pod *format;
69  struct spa_dict *props;
70 };
71 
72 struct pw_link_info *
74  const struct pw_link_info *update);
75 
76 void
77 pw_link_info_free(struct pw_link_info *info);
78 
79 
80 #define PW_LINK_EVENT_INFO 0
81 #define PW_LINK_EVENT_NUM 1
82 
85 #define PW_VERSION_LINK_EVENTS 0
86  uint32_t version;
92  void (*info) (void *object, const struct pw_link_info *info);
93 };
94 
95 #define PW_LINK_METHOD_ADD_LISTENER 0
96 #define PW_LINK_METHOD_NUM 1
97 
100 #define PW_VERSION_LINK_METHODS 0
101  uint32_t version;
102 
103  int (*add_listener) (void *object,
104  struct spa_hook *listener,
105  const struct pw_link_events *events,
106  void *data);
107 };
108 
109 #define pw_link_method(o,method,version,...) \
110 ({ \
111  int _res = -ENOTSUP; \
112  spa_interface_call_res((struct spa_interface*)o, \
113  struct pw_link_methods, _res, \
114  method, version, ##__VA_ARGS__); \
115  _res; \
116 })
117 
118 #define pw_link_add_listener(c,...) pw_link_method(c,add_listener,0,__VA_ARGS__)
119 
120 #ifdef __cplusplus
121 } /* extern "C" */
122 #endif
123 
124 #endif /* PIPEWIRE_LINK_H */
data
Definition: filter.c:70
proxy.h
pw_link_state_as_string
SPA_EXPORT const char * pw_link_state_as_string(enum pw_link_state state)
Definition: introspect.c:66