PipeWire  0.1.7
port.h
Go to the documentation of this file.
1 /* PipeWire
2  * Copyright (C) 2015 Wim Taymans <wim.taymans@gmail.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19 
20 #ifndef __PIPEWIRE_PORT_H__
21 #define __PIPEWIRE_PORT_H__
22 
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26 
27 #define PW_TYPE__Port "PipeWire:Object:Port"
28 #define PW_TYPE_PORT_BASE PW_TYPE__Port ":"
29 
30 #include <spa/utils/hook.h>
31 
42 struct pw_port;
43 struct pw_link;
44 
45 #include <pipewire/core.h>
46 #include <pipewire/introspect.h>
47 #include <pipewire/node.h>
48 
56 };
57 
60 #define PW_VERSION_PORT_EVENTS 0
61  uint32_t version;
62 
64  void (*destroy) (void *data);
65 
67  void (*free) (void *data);
68 
70  void (*link_added) (void *data, struct pw_link *link);
71 
73  void (*link_removed) (void *data, struct pw_link *link);
74 
76  void (*state_changed) (void *data, enum pw_port_state state);
77 
79  void (*properties_changed) (void *data, const struct pw_properties *properties);
80 };
81 
83 enum pw_direction pw_port_get_direction(struct pw_port *port);
84 
86 const struct pw_properties *pw_port_get_properties(struct pw_port *port);
87 
89 void pw_port_update_properties(struct pw_port *port, const struct spa_dict *dict);
90 
92 uint32_t pw_port_get_id(struct pw_port *port);
93 
95 struct pw_node *pw_port_get_node(struct pw_port *port);
96 
98 void pw_port_add_listener(struct pw_port *port,
99  struct spa_hook *listener,
100  const struct pw_port_events *events,
101  void *data);
102 
103 #ifdef __cplusplus
104 }
105 #endif
106 
107 #endif /* __PIPEWIRE_PORT_H__ */
A collection of key/value pairs.
Definition: properties.h:38
uint32_t pw_port_get_id(struct pw_port *port)
Get the port id.
Definition: port.c:219
void(* link_added)(void *data, struct pw_link *link)
a new link is added on this port
Definition: port.h:70
struct spa_dict dict
Definition: properties.h:39
the port is ready for format negotiation
Definition: port.h:52
void pw_port_add_listener(struct pw_port *port, struct spa_hook *listener, const struct pw_port_events *events, void *data)
Add an event listener on the port.
Definition: port.c:244
void(* properties_changed)(void *data, const struct pw_properties *properties)
the properties of the port changed
Definition: port.h:79
uint32_t version
Definition: port.h:61
const struct pw_properties * pw_port_get_properties(struct pw_port *port)
Get the port properties.
Definition: port.c:224
void pw_port_update_properties(struct pw_port *port, const struct spa_dict *dict)
Update the port properties.
Definition: port.c:229
Port events, use pw_port_add_listener.
Definition: port.h:59
the port is in error
Definition: port.h:50
pw_port_state
Definition: port.h:49
the port is streaming
Definition: port.h:55
the port is paused
Definition: port.h:54
void(* free)(void *data)
The port is freed.
Definition: port.h:67
the port is ready for buffer allocation
Definition: port.h:53
void(* state_changed)(void *data, enum pw_port_state state)
the state of the port changed
Definition: port.h:76
void(* destroy)(void *data)
The port is destroyed.
Definition: port.h:64
enum pw_direction pw_port_get_direction(struct pw_port *port)
Get the port direction.
Definition: port.c:214
PipeWire node class.
struct pw_node * pw_port_get_node(struct pw_port *port)
Get the port parent node or NULL when not yet set.
Definition: port.c:239
the port is being created
Definition: port.h:51
void(* link_removed)(void *data, struct pw_link *link)
a link is removed from this port
Definition: port.h:73
The port object.
pw_direction
The direction of a port.
Definition: introspect.h:47