diff options
author | Aylur <[email protected]> | 2024-09-01 03:18:35 +0200 |
---|---|---|
committer | Aylur <[email protected]> | 2024-09-01 03:18:35 +0200 |
commit | db0409915c8e161eb5e8a04938fb8b24f2393ddd (patch) | |
tree | 87540809d61c1f61749890c6861fda41c83718ff /wireplumber/include/private | |
parent | 276f4a8dc779632bffe5a7ec913a8a7f79cc5928 (diff) | |
parent | eacac669d0f1b12fde9119fd4a53fba29552eb70 (diff) |
merge wireplumber
Diffstat (limited to 'wireplumber/include/private')
-rw-r--r-- | wireplumber/include/private/device-private.h | 15 | ||||
-rw-r--r-- | wireplumber/include/private/endpoint-private.h | 22 |
2 files changed, 37 insertions, 0 deletions
diff --git a/wireplumber/include/private/device-private.h b/wireplumber/include/private/device-private.h new file mode 100644 index 0000000..e98a7f7 --- /dev/null +++ b/wireplumber/include/private/device-private.h @@ -0,0 +1,15 @@ +#ifndef ASTAL_WP_DEVICE_PRIVATE_H +#define ASTAL_WP_DEVICE_PRIVATE_H + +#include <glib-object.h> +#include <wp/wp.h> + +#include "device.h" + +G_BEGIN_DECLS + +AstalWpDevice *astal_wp_device_create(WpDevice *device); + +G_END_DECLS + +#endif // !ASTAL_WP_DEVICE_PRIATE_H diff --git a/wireplumber/include/private/endpoint-private.h b/wireplumber/include/private/endpoint-private.h new file mode 100644 index 0000000..7431c78 --- /dev/null +++ b/wireplumber/include/private/endpoint-private.h @@ -0,0 +1,22 @@ +#ifndef ASTAL_WP_ENDPOINT_PRIV_H +#define ASTAL_WP_ENDPOINT_PRIV_H + +#include <glib-object.h> +#include <wp/wp.h> + +#include "endpoint.h" +#include "wp.h" + +G_BEGIN_DECLS + +AstalWpEndpoint *astal_wp_endpoint_create(WpNode *node, WpPlugin *mixer, WpPlugin *defaults, + AstalWpWp *wp); +AstalWpEndpoint *astal_wp_endpoint_init_as_default(AstalWpEndpoint *self, WpPlugin *mixer, + WpPlugin *defaults, AstalWpMediaClass type, + AstalWpWp *wp); +void astal_wp_endpoint_update_default(AstalWpEndpoint *self, gboolean is_default); +void astal_wp_endpoint_update_volume(AstalWpEndpoint *self); + +G_END_DECLS + +#endif // !ASTAL_WP_ENDPOINT_PRIV_H |