diff options
Diffstat (limited to 'include/astal/wireplumber/wp.h')
-rw-r--r-- | include/astal/wireplumber/wp.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/include/astal/wireplumber/wp.h b/include/astal/wireplumber/wp.h index 3b4b5e5..d054bee 100644 --- a/include/astal/wireplumber/wp.h +++ b/include/astal/wireplumber/wp.h @@ -6,6 +6,7 @@ #include "audio.h" #include "device.h" #include "endpoint.h" +#include "video.h" G_BEGIN_DECLS @@ -17,13 +18,17 @@ AstalWpWp* astal_wp_wp_get_default(); AstalWpWp* astal_wp_get_default_wp(); AstalWpAudio* astal_wp_wp_get_audio(); +AstalWpVideo* astal_wp_wp_get_video(); + AstalWpEndpoint* astal_wp_wp_get_endpoint(AstalWpWp* self, guint id); GList* astal_wp_wp_get_endpoints(AstalWpWp* self); -AstalWpEndpoint* astal_wp_wp_get_default_speaker(AstalWpWp* self); -AstalWpEndpoint* astal_wp_wp_get_default_microphone(AstalWpWp* self); + AstalWpDevice* astal_wp_wp_get_device(AstalWpWp* self, guint id); GList* astal_wp_wp_get_devices(AstalWpWp* self); +AstalWpEndpoint* astal_wp_wp_get_default_speaker(AstalWpWp* self); +AstalWpEndpoint* astal_wp_wp_get_default_microphone(AstalWpWp* self); + G_END_DECLS #endif // !ASTAL_WIREPLUMBER_H |