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_CONTROL_H
26 #define PIPEWIRE_CONTROL_H
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 
32 #include <spa/utils/hook.h>
33 
34 /** \defgroup pw_control Control
35  *
36  * \brief A control can be used to control a port property.
37  */
38 
39 /**
40  * \addtogroup pw_control
41  * \{
42  */
43 struct pw_control;
44 
45 #include <pipewire/impl.h>
46 
47 /** Port events, use \ref pw_control_add_listener */
48 struct pw_control_events {
49 #define PW_VERSION_CONTROL_EVENTS 0
50 	uint32_t version;
51 
52 	/** The control is destroyed */
53 	void (*destroy) (void *data);
54 
55 	/** The control is freed */
56 	void (*free) (void *data);
57 
58 	/** control is linked to another control */
59 	void (*linked) (void *data, struct pw_control *other);
60 	/** control is unlinked from another control */
61 	void (*unlinked) (void *data, struct pw_control *other);
62 
63 };
64 
65 /** Get the control parent port or NULL when not set */
66 struct pw_impl_port *pw_control_get_port(struct pw_control *control);
67 
68 /** Add an event listener on the control */
69 void pw_control_add_listener(struct pw_control *control,
70 			     struct spa_hook *listener,
71 			     const struct pw_control_events *events,
72 			     void *data);
73 
74 /**
75  * \}
76  */
77 
78 #ifdef __cplusplus
79 }
80 #endif
81 
82 #endif /* PIPEWIRE_CONTROL_H */
83