PipeWire  0.3.51
impl-port.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_PORT_H
26 #define PIPEWIRE_IMPL_PORT_H
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 
32 #include <spa/utils/hook.h>
33 
43 struct pw_impl_port;
44 struct pw_impl_link;
45 struct pw_control;
46 
47 #include <pipewire/impl.h>
48 
49 enum pw_impl_port_state {
55 };
56 
59 #define PW_VERSION_IMPL_PORT_EVENTS 2
60  uint32_t version;
61 
63  void (*destroy) (void *data);
64 
66  void (*free) (void *data);
67 
69  void (*initialized) (void *data);
70 
72  void (*info_changed) (void *data, const struct pw_port_info *info);
73 
75  void (*link_added) (void *data, struct pw_impl_link *link);
76 
78  void (*link_removed) (void *data, struct pw_impl_link *link);
79 
81  void (*state_changed) (void *data, enum pw_impl_port_state old,
82  enum pw_impl_port_state state, const char *error);
83 
85  void (*control_added) (void *data, struct pw_control *control);
86 
88  void (*control_removed) (void *data, struct pw_control *control);
89 
91  void (*param_changed) (void *data, uint32_t id);
92 
94  void (*latency_changed) (void *data);
95 };
96 
99 struct pw_impl_port *
100 pw_context_create_port(struct pw_context *context,
101  enum pw_direction direction,
102  uint32_t port_id,
103  const struct spa_port_info *info,
104  size_t user_data_size);
105 
108 
110 const struct pw_properties *pw_impl_port_get_properties(struct pw_impl_port *port);
111 
113 int pw_impl_port_update_properties(struct pw_impl_port *port, const struct spa_dict *dict);
114 
116 const struct pw_port_info *pw_impl_port_get_info(struct pw_impl_port *port);
117 
119 uint32_t pw_impl_port_get_id(struct pw_impl_port *port);
120 
122 struct pw_impl_node *pw_impl_port_get_node(struct pw_impl_port *port);
123 
125 int pw_impl_port_is_linked(struct pw_impl_port *port);
126 
128 int pw_impl_port_add(struct pw_impl_port *port, struct pw_impl_node *node);
129 
131 void pw_impl_port_add_listener(struct pw_impl_port *port,
132  struct spa_hook *listener,
133  const struct pw_impl_port_events *events,
134  void *data);
135 
140 #ifdef __cplusplus
141 }
142 #endif
143 
144 #endif /* PIPEWIRE_IMPL_PORT_H */
int pw_impl_port_update_properties(struct pw_impl_port *port, const struct spa_dict *dict)
Update the port properties.
Definition: impl-port.c:696
pw_impl_port_state
Definition: impl-port.h:56
const struct pw_properties * pw_impl_port_get_properties(struct pw_impl_port *port)
Get the port properties.
Definition: impl-port.c:690
int pw_impl_port_is_linked(struct pw_impl_port *port)
check is a port has links, return 0 if not, 1 if it is linked
Definition: impl-port.c:1413
int pw_impl_port_add(struct pw_impl_port *port, struct pw_impl_node *node)
Add a port to a node.
Definition: impl-port.c:954
struct pw_impl_node * pw_impl_port_get_node(struct pw_impl_port *port)
Get the port parent node or NULL when not yet set.
Definition: impl-port.c:710
enum pw_direction pw_impl_port_get_direction(struct pw_impl_port *port)
Get the port direction.
Definition: impl-port.c:678
struct pw_impl_port * pw_context_create_port(struct pw_context *context, enum pw_direction direction, uint32_t port_id, const struct spa_port_info *info, size_t user_data_size)
Create a new port.
Definition: impl-port.c:458
uint32_t pw_impl_port_get_id(struct pw_impl_port *port)
Get the port id.
Definition: impl-port.c:684
void pw_impl_port_add_listener(struct pw_impl_port *port, struct spa_hook *listener, const struct pw_impl_port_events *events, void *data)
Add an event listener on the port.
Definition: impl-port.c:716
const struct pw_port_info * pw_impl_port_get_info(struct pw_impl_port *port)
Get the port info.
Definition: impl-port.c:725
@ PW_IMPL_PORT_STATE_READY
the port is ready for buffer allocation
Definition: impl-port.h:60
@ PW_IMPL_PORT_STATE_ERROR
the port is in error
Definition: impl-port.h:57
@ PW_IMPL_PORT_STATE_INIT
the port is being created
Definition: impl-port.h:58
@ PW_IMPL_PORT_STATE_PAUSED
the port is paused
Definition: impl-port.h:61
@ PW_IMPL_PORT_STATE_CONFIGURE
the port is ready for format negotiation
Definition: impl-port.h:59
#define pw_direction
The direction of a port.
Definition: port.h:63
spa/utils/hook.h
pipewire/impl.h
Port events, use pw_impl_port_add_listener.
Definition: impl-port.h:65
void(* control_added)(void *data, struct pw_control *control)
a control was added to the port
Definition: impl-port.h:93
void(* destroy)(void *data)
The port is destroyed.
Definition: impl-port.h:71
void(* info_changed)(void *data, const struct pw_port_info *info)
the port info changed
Definition: impl-port.h:80
void(* free)(void *data)
The port is freed.
Definition: impl-port.h:74
void(* link_added)(void *data, struct pw_impl_link *link)
a new link is added on this port
Definition: impl-port.h:83
void(* latency_changed)(void *data)
latency changed.
Definition: impl-port.h:102
void(* state_changed)(void *data, enum pw_impl_port_state old, enum pw_impl_port_state state, const char *error)
the state of the port changed
Definition: impl-port.h:89
uint32_t version
Definition: impl-port.h:68
void(* param_changed)(void *data, uint32_t id)
a parameter changed, since version 1
Definition: impl-port.h:99
void(* initialized)(void *data)
The port is initialized.
Definition: impl-port.h:77
void(* control_removed)(void *data, struct pw_control *control)
a control was removed from the port
Definition: impl-port.h:96
void(* link_removed)(void *data, struct pw_impl_link *link)
a link is removed from this port
Definition: impl-port.h:86
Definition: impl.h:47
Definition: port.h:72
Definition: properties.h:53
struct spa_dict dict
dictionary of key/values
Definition: properties.h:54
Definition: dict.h:59
A hook, contains the structure with functions and the data passed to the functions.
Definition: hook.h:351
Port information structure.
Definition: node.h:113