mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-27 07:00:12 -05:00
pinossocketsink: add new socket sink
Add a new sink that replaces the pinospay ! multisocketsink element pair. This would allow us to track the fds per client more closely.
This commit is contained in:
parent
d5e333ac4b
commit
c8f34750e2
9 changed files with 2588 additions and 32 deletions
|
|
@ -32,6 +32,7 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "gstpinossocketsink.h"
|
||||
#include "gstpinossrc.h"
|
||||
#include "gstpinossink.h"
|
||||
#include "gstpinosdeviceprovider.h"
|
||||
|
|
@ -51,6 +52,8 @@ plugin_init (GstPlugin * plugin)
|
|||
GST_TYPE_PINOS_SRC);
|
||||
gst_element_register (plugin, "pinossink", GST_RANK_NONE,
|
||||
GST_TYPE_PINOS_SINK);
|
||||
gst_element_register (plugin, "pinossocketsink", GST_RANK_NONE,
|
||||
GST_TYPE_PINOS_SOCKET_SINK);
|
||||
|
||||
if (!gst_device_provider_register (plugin, "pinosdeviceprovider",
|
||||
GST_RANK_PRIMARY + 1, GST_TYPE_PINOS_DEVICE_PROVIDER))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue