mirror of
https://gitlab.freedesktop.org/pipewire/wireplumber.git
synced 2025-12-24 22:30:03 +01:00
47 lines
908 B
C
47 lines
908 B
C
/* WirePlumber
|
|
*
|
|
* Copyright © 2019 Collabora Ltd.
|
|
* @author George Kiagiadakis <george.kiagiadakis@collabora.com>
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#ifndef __WIREPLUMBER_ENDPOINT_H__
|
|
#define __WIREPLUMBER_ENDPOINT_H__
|
|
|
|
#include "global-proxy.h"
|
|
#include "port.h"
|
|
#include "iterator.h"
|
|
#include "object-interest.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
/**
|
|
* WP_TYPE_ENDPOINT:
|
|
*
|
|
* The #WpEndpoint #GType
|
|
*/
|
|
#define WP_TYPE_ENDPOINT (wp_endpoint_get_type ())
|
|
WP_API
|
|
G_DECLARE_DERIVABLE_TYPE (WpEndpoint, wp_endpoint, WP, ENDPOINT, WpGlobalProxy)
|
|
|
|
struct _WpEndpointClass
|
|
{
|
|
WpGlobalProxyClass parent_class;
|
|
};
|
|
|
|
WP_API
|
|
const gchar * wp_endpoint_get_name (WpEndpoint * self);
|
|
|
|
WP_API
|
|
const gchar * wp_endpoint_get_media_class (WpEndpoint * self);
|
|
|
|
WP_API
|
|
WpDirection wp_endpoint_get_direction (WpEndpoint * self);
|
|
|
|
WP_API
|
|
void wp_endpoint_create_link (WpEndpoint * self, WpProperties * props);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif
|