mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-16 08:56:45 -05:00
introspect: implement get_source_info_by_id
This commit is contained in:
parent
7159ea8408
commit
4199d5652e
1 changed files with 17 additions and 0 deletions
|
|
@ -46,6 +46,9 @@ pinos_context_list_source_info (PinosContext *context,
|
||||||
GList *walk;
|
GList *walk;
|
||||||
PinosContextPrivate *priv = context->priv;
|
PinosContextPrivate *priv = context->priv;
|
||||||
|
|
||||||
|
g_return_if_fail (PINOS_IS_CONTEXT (context));
|
||||||
|
g_return_if_fail (cb != NULL);
|
||||||
|
|
||||||
for (walk = priv->sources; walk; walk = g_list_next (walk)) {
|
for (walk = priv->sources; walk; walk = g_list_next (walk)) {
|
||||||
GDBusProxy *proxy = walk->data;
|
GDBusProxy *proxy = walk->data;
|
||||||
PinosSourceInfo info;
|
PinosSourceInfo info;
|
||||||
|
|
@ -78,4 +81,18 @@ pinos_context_get_source_info_by_id (PinosContext *context,
|
||||||
GCancellable *cancellable,
|
GCancellable *cancellable,
|
||||||
gpointer user_data)
|
gpointer user_data)
|
||||||
{
|
{
|
||||||
|
PinosSourceInfo info;
|
||||||
|
|
||||||
|
g_return_if_fail (PINOS_IS_CONTEXT (context));
|
||||||
|
g_return_if_fail (id != NULL);
|
||||||
|
g_return_if_fail (cb != NULL);
|
||||||
|
|
||||||
|
info.id = id;
|
||||||
|
info.name = "gst";
|
||||||
|
info.properties = NULL;
|
||||||
|
info.state = PINOS_SOURCE_STATE_SUSPENDED;
|
||||||
|
info.formats = NULL;
|
||||||
|
|
||||||
|
cb (context, &info, user_data);
|
||||||
|
cb (context, NULL, user_data);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue