PipeWire 0.3.65
spa/include/spa/node/node.h
Go to the documentation of this file.
1/* Simple Plugin API
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 SPA_NODE_H
26#define SPA_NODE_H
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
42#include <errno.h>
43#include <spa/utils/defs.h>
44#include <spa/utils/type.h>
45#include <spa/utils/hook.h>
46#include <spa/buffer/buffer.h>
47#include <spa/node/event.h>
48#include <spa/node/command.h>
49
50
51#define SPA_TYPE_INTERFACE_Node SPA_TYPE_INFO_INTERFACE_BASE "Node"
52
53#define SPA_VERSION_NODE 0
54struct spa_node { struct spa_interface iface; };
55
62 uint32_t max_input_ports;
63 uint32_t max_output_ports;
64#define SPA_NODE_CHANGE_MASK_FLAGS (1u<<0)
65#define SPA_NODE_CHANGE_MASK_PROPS (1u<<1)
66#define SPA_NODE_CHANGE_MASK_PARAMS (1u<<2)
67 uint64_t change_mask;
69#define SPA_NODE_FLAG_RT (1u<<0)
70#define SPA_NODE_FLAG_IN_DYNAMIC_PORTS (1u<<1)
71#define SPA_NODE_FLAG_OUT_DYNAMIC_PORTS (1u<<2)
72#define SPA_NODE_FLAG_IN_PORT_CONFIG (1u<<3)
74#define SPA_NODE_FLAG_OUT_PORT_CONFIG (1u<<4)
76#define SPA_NODE_FLAG_NEED_CONFIGURE (1u<<5)
78#define SPA_NODE_FLAG_ASYNC (1u<<6)
82 uint64_t flags;
83 struct spa_dict *props;
85 uint32_t n_params;
86};
88#define SPA_NODE_INFO_INIT() ((struct spa_node_info) { 0, })
89
95struct spa_port_info {
96#define SPA_PORT_CHANGE_MASK_FLAGS (1u<<0)
97#define SPA_PORT_CHANGE_MASK_RATE (1u<<1)
98#define SPA_PORT_CHANGE_MASK_PROPS (1u<<2)
99#define SPA_PORT_CHANGE_MASK_PARAMS (1u<<3)
100 uint64_t change_mask;
102#define SPA_PORT_FLAG_REMOVABLE (1u<<0)
103#define SPA_PORT_FLAG_OPTIONAL (1u<<1)
104#define SPA_PORT_FLAG_CAN_ALLOC_BUFFERS (1u<<2)
105#define SPA_PORT_FLAG_IN_PLACE (1u<<3)
107#define SPA_PORT_FLAG_NO_REF (1u<<4)
111#define SPA_PORT_FLAG_LIVE (1u<<5)
113#define SPA_PORT_FLAG_PHYSICAL (1u<<6)
114#define SPA_PORT_FLAG_TERMINAL (1u<<7)
117#define SPA_PORT_FLAG_DYNAMIC_DATA (1u<<8)
120 uint64_t flags;
122 const struct spa_dict *props;
123 struct spa_param_info *params;
124 uint32_t n_params;
126
127#define SPA_PORT_INFO_INIT() ((struct spa_port_info) { 0, })
128
129#define SPA_RESULT_TYPE_NODE_ERROR 1
130#define SPA_RESULT_TYPE_NODE_PARAMS 2
131
134 const char *message;
135};
136
139 uint32_t id;
140 uint32_t index;
141 uint32_t next;
142 struct spa_pod *param;
143};
144
145#define SPA_NODE_EVENT_INFO 0
146#define SPA_NODE_EVENT_PORT_INFO 1
147#define SPA_NODE_EVENT_RESULT 2
148#define SPA_NODE_EVENT_EVENT 3
149#define SPA_NODE_EVENT_NUM 4
157struct spa_node_events {
158#define SPA_VERSION_NODE_EVENTS 0
159 uint32_t version;
162 void (*info) (void *data, const struct spa_node_info *info);
163
165 void (*port_info) (void *data,
166 enum spa_direction direction, uint32_t port,
167 const struct spa_port_info *info);
185 void (*result) (void *data, int seq, int res,
186 uint32_t type, const void *result);
187
195 void (*event) (void *data, const struct spa_event *event);
197
198#define SPA_NODE_CALLBACK_READY 0
199#define SPA_NODE_CALLBACK_REUSE_BUFFER 1
200#define SPA_NODE_CALLBACK_XRUN 2
201#define SPA_NODE_CALLBACK_NUM 3
208struct spa_node_callbacks {
209#define SPA_VERSION_NODE_CALLBACKS 0
210 uint32_t version;
219 int (*ready) (void *data, int state);
220
231 int (*reuse_buffer) (void *data,
232 uint32_t port_id,
233 uint32_t buffer_id);
234
245 int (*xrun) (void *data, uint64_t trigger, uint64_t delay,
246 struct spa_pod *info);
247};
248
249
251#define SPA_NODE_PARAM_FLAG_TEST_ONLY (1 << 0)
252#define SPA_NODE_PARAM_FLAG_FIXATE (1 << 1)
253#define SPA_NODE_PARAM_FLAG_NEAREST (1 << 2)
257#define SPA_NODE_BUFFERS_FLAG_ALLOC (1 << 0)
262#define SPA_NODE_METHOD_ADD_LISTENER 0
263#define SPA_NODE_METHOD_SET_CALLBACKS 1
264#define SPA_NODE_METHOD_SYNC 2
265#define SPA_NODE_METHOD_ENUM_PARAMS 3
266#define SPA_NODE_METHOD_SET_PARAM 4
267#define SPA_NODE_METHOD_SET_IO 5
268#define SPA_NODE_METHOD_SEND_COMMAND 6
269#define SPA_NODE_METHOD_ADD_PORT 7
270#define SPA_NODE_METHOD_REMOVE_PORT 8
271#define SPA_NODE_METHOD_PORT_ENUM_PARAMS 9
272#define SPA_NODE_METHOD_PORT_SET_PARAM 10
273#define SPA_NODE_METHOD_PORT_USE_BUFFERS 11
274#define SPA_NODE_METHOD_PORT_SET_IO 12
275#define SPA_NODE_METHOD_PORT_REUSE_BUFFER 13
276#define SPA_NODE_METHOD_PROCESS 14
277#define SPA_NODE_METHOD_NUM 15
278
282struct spa_node_methods {
283 /* the version of the node methods. This can be used to expand this
284 * structure in the future */
285#define SPA_VERSION_NODE_METHODS 0
286 uint32_t version;
287
302 int (*add_listener) (void *object,
303 struct spa_hook *listener,
304 const struct spa_node_events *events,
305 void *data);
319 int (*set_callbacks) (void *object,
320 const struct spa_node_callbacks *callbacks,
321 void *data);
337 int (*sync) (void *object, int seq);
370 int (*enum_params) (void *object, int seq,
371 uint32_t id, uint32_t start, uint32_t max,
372 const struct spa_pod *filter);
373
395 int (*set_param) (void *object,
396 uint32_t id, uint32_t flags,
397 const struct spa_pod *param);
398
417 int (*set_io) (void *object,
418 uint32_t id, void *data, size_t size);
419
434 int (*send_command) (void *object, const struct spa_command *command);
435
452 int (*add_port) (void *object,
453 enum spa_direction direction, uint32_t port_id,
454 const struct spa_dict *props);
455
466 int (*remove_port) (void *object,
467 enum spa_direction direction, uint32_t port_id);
468
499 int (*port_enum_params) (void *object, int seq,
500 enum spa_direction direction, uint32_t port_id,
501 uint32_t id, uint32_t start, uint32_t max,
502 const struct spa_pod *filter);
527 int (*port_set_param) (void *object,
528 enum spa_direction direction,
529 uint32_t port_id,
530 uint32_t id, uint32_t flags,
531 const struct spa_pod *param);
573 int (*port_use_buffers) (void *object,
574 enum spa_direction direction,
575 uint32_t port_id,
576 uint32_t flags,
577 struct spa_buffer **buffers,
578 uint32_t n_buffers);
579
600 int (*port_set_io) (void *object,
601 enum spa_direction direction,
602 uint32_t port_id,
603 uint32_t id,
604 void *data, size_t size);
605
617 int (*port_reuse_buffer) (void *object, uint32_t port_id, uint32_t buffer_id);
618
642 int (*process) (void *object);
643};
644
645#define spa_node_method(o,method,version,...) \
646({ \
647 int _res = -ENOTSUP; \
648 struct spa_node *_n = o; \
649 spa_interface_call_res(&_n->iface, \
650 struct spa_node_methods, _res, \
651 method, version, ##__VA_ARGS__); \
652 _res; \
653})
654
655#define spa_node_add_listener(n,...) spa_node_method(n, add_listener, 0, __VA_ARGS__)
656#define spa_node_set_callbacks(n,...) spa_node_method(n, set_callbacks, 0, __VA_ARGS__)
657#define spa_node_sync(n,...) spa_node_method(n, sync, 0, __VA_ARGS__)
658#define spa_node_enum_params(n,...) spa_node_method(n, enum_params, 0, __VA_ARGS__)
659#define spa_node_set_param(n,...) spa_node_method(n, set_param, 0, __VA_ARGS__)
660#define spa_node_set_io(n,...) spa_node_method(n, set_io, 0, __VA_ARGS__)
661#define spa_node_send_command(n,...) spa_node_method(n, send_command, 0, __VA_ARGS__)
662#define spa_node_add_port(n,...) spa_node_method(n, add_port, 0, __VA_ARGS__)
663#define spa_node_remove_port(n,...) spa_node_method(n, remove_port, 0, __VA_ARGS__)
664#define spa_node_port_enum_params(n,...) spa_node_method(n, port_enum_params, 0, __VA_ARGS__)
665#define spa_node_port_set_param(n,...) spa_node_method(n, port_set_param, 0, __VA_ARGS__)
666#define spa_node_port_use_buffers(n,...) spa_node_method(n, port_use_buffers, 0, __VA_ARGS__)
667#define spa_node_port_set_io(n,...) spa_node_method(n, port_set_io, 0, __VA_ARGS__)
668
669#define spa_node_port_reuse_buffer(n,...) spa_node_method(n, port_reuse_buffer, 0, __VA_ARGS__)
670#define spa_node_process(n) spa_node_method(n, process, 0)
671
676#ifdef __cplusplus
677} /* extern "C" */
678#endif
679
680#endif /* SPA_NODE_H */
spa/buffer/buffer.h
spa/utils/defs.h
spa_direction
Definition: defs.h:108
spa/utils/hook.h
spa/node/command.h
spa/node/event.h
spa/utils/type.h
A Buffer.
Definition: buffer/buffer.h:109
Definition: pod/command.h:49
Definition: utils/dict.h:59
Definition: pod/event.h:48
Definition: defs.h:139
A hook, contains the structure with functions and the data passed to the functions.
Definition: hook.h:351
Definition: hook.h:158
Node callbacks.
Definition: spa/include/spa/node/node.h:252
uint32_t version
Definition: spa/include/spa/node/node.h:255
int(* ready)(void *data, int state)
Definition: spa/include/spa/node/node.h:264
int(* reuse_buffer)(void *data, uint32_t port_id, uint32_t buffer_id)
Definition: spa/include/spa/node/node.h:276
int(* xrun)(void *data, uint64_t trigger, uint64_t delay, struct spa_pod *info)
Definition: spa/include/spa/node/node.h:290
events from the spa_node.
Definition: spa/include/spa/node/node.h:196
uint32_t version
version of this structure
Definition: spa/include/spa/node/node.h:199
void(* event)(void *data, const struct spa_event *event)
Definition: spa/include/spa/node/node.h:235
void(* result)(void *data, int seq, int res, uint32_t type, const void *result)
notify a result.
Definition: spa/include/spa/node/node.h:225
void(* info)(void *data, const struct spa_node_info *info)
Emitted when info changes.
Definition: spa/include/spa/node/node.h:202
void(* port_info)(void *data, enum spa_direction direction, uint32_t port, const struct spa_port_info *info)
Emitted when port info changes, NULL when port is removed.
Definition: spa/include/spa/node/node.h:205
Node information structure.
Definition: spa/include/spa/node/node.h:68
struct spa_param_info * params
parameter information
Definition: spa/include/spa/node/node.h:101
uint64_t flags
Definition: spa/include/spa/node/node.h:99
uint32_t n_params
number of items in params
Definition: spa/include/spa/node/node.h:102
uint32_t max_output_ports
Definition: spa/include/spa/node/node.h:70
uint64_t change_mask
Definition: spa/include/spa/node/node.h:77
uint32_t max_input_ports
Definition: spa/include/spa/node/node.h:69
Node methods.
Definition: spa/include/spa/node/node.h:347
int(* set_param)(void *object, uint32_t id, uint32_t flags, const struct spa_pod *param)
Set the configurable parameter in node.
Definition: spa/include/spa/node/node.h:461
int(* port_enum_params)(void *object, int seq, enum spa_direction direction, uint32_t port_id, uint32_t id, uint32_t start, uint32_t max, const struct spa_pod *filter)
Enumerate all possible parameters of id on port_id of node that are compatible with filter.
Definition: spa/include/spa/node/node.h:565
int(* port_set_io)(void *object, enum spa_direction direction, uint32_t port_id, uint32_t id, void *data, size_t size)
Configure the given memory area with id on port_id.
Definition: spa/include/spa/node/node.h:666
int(* process)(void *object)
Process the node.
Definition: spa/include/spa/node/node.h:708
int(* port_use_buffers)(void *object, enum spa_direction direction, uint32_t port_id, uint32_t flags, struct spa_buffer **buffers, uint32_t n_buffers)
Tell the port to use the given buffers.
Definition: spa/include/spa/node/node.h:639
int(* add_listener)(void *object, struct spa_hook *listener, const struct spa_node_events *events, void *data)
Adds an event listener on node.
Definition: spa/include/spa/node/node.h:368
int(* sync)(void *object, int seq)
Perform a sync operation.
Definition: spa/include/spa/node/node.h:403
int(* add_port)(void *object, enum spa_direction direction, uint32_t port_id, const struct spa_dict *props)
Make a new port with port_id.
Definition: spa/include/spa/node/node.h:518
int(* enum_params)(void *object, int seq, uint32_t id, uint32_t start, uint32_t max, const struct spa_pod *filter)
Enumerate the parameters of a node.
Definition: spa/include/spa/node/node.h:436
int(* set_callbacks)(void *object, const struct spa_node_callbacks *callbacks, void *data)
Set callbacks to on node.
Definition: spa/include/spa/node/node.h:385
uint32_t version
Definition: spa/include/spa/node/node.h:352
int(* set_io)(void *object, uint32_t id, void *data, size_t size)
Configure the given memory area with id on node.
Definition: spa/include/spa/node/node.h:483
int(* port_reuse_buffer)(void *object, uint32_t port_id, uint32_t buffer_id)
Tell an output port to reuse a buffer.
Definition: spa/include/spa/node/node.h:683
int(* remove_port)(void *object, enum spa_direction direction, uint32_t port_id)
Remove a port with port_id.
Definition: spa/include/spa/node/node.h:532
int(* send_command)(void *object, const struct spa_command *command)
Send a command to a node.
Definition: spa/include/spa/node/node.h:500
int(* port_set_param)(void *object, enum spa_direction direction, uint32_t port_id, uint32_t id, uint32_t flags, const struct spa_pod *param)
Set a parameter on port_id of node.
Definition: spa/include/spa/node/node.h:593
Definition: spa/include/spa/node/node.h:61
struct spa_interface iface
Definition: spa/include/spa/node/node.h:61
information about a parameter
Definition: param.h:70
Definition: pod/pod.h:63
uint32_t size
Definition: pod/pod.h:64
Port information structure.
Definition: spa/include/spa/node/node.h:113
uint64_t flags
port flags
Definition: spa/include/spa/node/node.h:151
struct spa_fraction rate
rate of sequence numbers on port
Definition: spa/include/spa/node/node.h:152
struct spa_param_info * params
parameter information
Definition: spa/include/spa/node/node.h:154
uint64_t change_mask
Definition: spa/include/spa/node/node.h:122
uint32_t n_params
number of items in params
Definition: spa/include/spa/node/node.h:155
an error result
Definition: spa/include/spa/node/node.h:167
const char * message
Definition: spa/include/spa/node/node.h:168
the result of enum_params or port_enum_params.
Definition: spa/include/spa/node/node.h:172
struct spa_pod * param
the result param
Definition: spa/include/spa/node/node.h:176
uint32_t next
next index of iteration
Definition: spa/include/spa/node/node.h:175
uint32_t index
index of parameter
Definition: spa/include/spa/node/node.h:174
uint32_t id
id of parameter
Definition: spa/include/spa/node/node.h:173