mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-04 13:30:12 -05:00
Work on adding pulsevideosink
Add the beginnings of a pulsevideosink Make a new client-source object for every client that wants to provide a stream. The client will have a handle to write the stream to.
This commit is contained in:
parent
7bb3ae2562
commit
ca7e4602f6
13 changed files with 1232 additions and 23 deletions
|
|
@ -401,3 +401,14 @@ pv_source_release_source_output (PvSource *source, PvSourceOutput *output)
|
|||
return res;
|
||||
}
|
||||
|
||||
const gchar *
|
||||
pv_source_get_object_path (PvSource *source)
|
||||
{
|
||||
PvSourcePrivate *priv;
|
||||
|
||||
g_return_val_if_fail (PV_IS_SOURCE (source), NULL);
|
||||
priv = source->priv;
|
||||
|
||||
return priv->object_path;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue