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