PipeWire 1.0.5
Loading...
Searching...
No Matches
port.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_PORT_H
6#define PIPEWIRE_PORT_H
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
12#include <stdarg.h>
13#include <errno.h>
14
15#include <spa/utils/defs.h>
16#include <spa/utils/hook.h>
17#include <spa/param/param.h>
18
19#include <pipewire/proxy.h>
20
30#define PW_TYPE_INTERFACE_Port PW_TYPE_INFO_INTERFACE_BASE "Port"
31
32#define PW_PORT_PERM_MASK PW_PERM_R|PW_PERM_X|PW_PERM_M
33
34#define PW_VERSION_PORT 3
35struct pw_port;
36
38#define pw_direction spa_direction
39#define PW_DIRECTION_INPUT SPA_DIRECTION_INPUT
40#define PW_DIRECTION_OUTPUT SPA_DIRECTION_OUTPUT
43const char * pw_direction_as_string(enum pw_direction direction);
44
45struct pw_port_info {
46 uint32_t id;
48#define PW_PORT_CHANGE_MASK_PROPS (1 << 0)
49#define PW_PORT_CHANGE_MASK_PARAMS (1 << 1)
50#define PW_PORT_CHANGE_MASK_ALL ((1 << 2)-1)
51 uint64_t change_mask;
52 struct spa_dict *props;
53 struct spa_param_info *params;
54 uint32_t n_params;
55};
59 const struct pw_port_info *update);
60
63 const struct pw_port_info *update, bool reset);
65void
68#define PW_PORT_EVENT_INFO 0
69#define PW_PORT_EVENT_PARAM 1
70#define PW_PORT_EVENT_NUM 2
71
73struct pw_port_events {
74#define PW_VERSION_PORT_EVENTS 0
75 uint32_t version;
81 void (*info) (void *data, const struct pw_port_info *info);
93 void (*param) (void *data, int seq,
94 uint32_t id, uint32_t index, uint32_t next,
95 const struct spa_pod *param);
96};
97
98#define PW_PORT_METHOD_ADD_LISTENER 0
99#define PW_PORT_METHOD_SUBSCRIBE_PARAMS 1
100#define PW_PORT_METHOD_ENUM_PARAMS 2
101#define PW_PORT_METHOD_NUM 3
102
104struct pw_port_methods {
105#define PW_VERSION_PORT_METHODS 0
106 uint32_t version;
107
108 int (*add_listener) (void *object,
109 struct spa_hook *listener,
110 const struct pw_port_events *events,
111 void *data);
123 int (*subscribe_params) (void *object, uint32_t *ids, uint32_t n_ids);
124
139 int (*enum_params) (void *object, int seq,
140 uint32_t id, uint32_t start, uint32_t num,
141 const struct spa_pod *filter);
142};
143
144#define pw_port_method(o,method,version,...) \
145({ \
146 int _res = -ENOTSUP; \
147 spa_interface_call_res((struct spa_interface*)o, \
148 struct pw_port_methods, _res, \
149 method, version, ##__VA_ARGS__); \
150 _res; \
151})
152
153#define pw_port_add_listener(c,...) pw_port_method(c,add_listener,0,__VA_ARGS__)
154#define pw_port_subscribe_params(c,...) pw_port_method(c,subscribe_params,0,__VA_ARGS__)
155#define pw_port_enum_params(c,...) pw_port_method(c,enum_params,0,__VA_ARGS__)
156
161#ifdef __cplusplus
162} /* extern "C" */
163#endif
164
165#endif /* PIPEWIRE_PORT_H */
spa/utils/defs.h
const char * pw_direction_as_string(enum pw_direction direction)
Convert a pw_direction to a readable string.
Definition introspect.c:33
void pw_port_info_free(struct pw_port_info *info)
Definition introspect.c:307
struct pw_port_info * pw_port_info_update(struct pw_port_info *info, const struct pw_port_info *update)
Definition introspect.c:300
#define pw_direction
The direction of a port.
Definition port.h:46
struct pw_port_info * pw_port_info_merge(struct pw_port_info *info, const struct pw_port_info *update, bool reset)
Definition introspect.c:243
spa/utils/hook.h
spa/param/param.h
pipewire/proxy.h
Port events.
Definition port.h:89
void(* info)(void *data, const struct pw_port_info *info)
Notify port info.
Definition port.h:98
uint32_t version
Definition port.h:92
void(* param)(void *data, int seq, uint32_t id, uint32_t index, uint32_t next, const struct spa_pod *param)
Notify a port param.
Definition port.h:110
Definition port.h:55
uint32_t n_params
number of items in params
Definition port.h:67
struct spa_param_info * params
parameters
Definition port.h:66
uint64_t change_mask
bitfield of changed fields since last call
Definition port.h:64
uint32_t id
id of the global
Definition port.h:56
enum pw_direction direction
port direction
Definition port.h:57
Port methods.
Definition port.h:125
int(* subscribe_params)(void *object, uint32_t *ids, uint32_t n_ids)
Subscribe to parameter changes.
Definition port.h:145
uint32_t version
Definition port.h:128
int(* enum_params)(void *object, int seq, uint32_t id, uint32_t start, uint32_t num, const struct spa_pod *filter)
Enumerate port parameters.
Definition port.h:161
int(* add_listener)(void *object, struct spa_hook *listener, const struct pw_port_events *events, void *data)
Definition port.h:130
Definition dict.h:39
A hook, contains the structure with functions and the data passed to the functions.
Definition hook.h:350
information about a parameter
Definition param.h:51
Definition pod.h:43