mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-01-01 11:08:43 -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
|
|
@ -152,7 +152,6 @@ gst_pinos_sink_class_init (GstPinosSinkClass * klass)
|
|||
gst_element_class_add_pad_template (gstelement_class,
|
||||
gst_static_pad_template_get (&gst_pinos_sink_template));
|
||||
|
||||
gstbasesink_class->get_caps = gst_pinos_sink_getcaps;
|
||||
gstbasesink_class->set_caps = gst_pinos_sink_setcaps;
|
||||
gstbasesink_class->fixate = gst_pinos_sink_sink_fixate;
|
||||
gstbasesink_class->propose_allocation = gst_pinos_sink_propose_allocation;
|
||||
|
|
@ -338,12 +337,6 @@ on_stream_notify (GObject *gobject,
|
|||
pinos_main_loop_signal (pinossink->loop, FALSE);
|
||||
}
|
||||
|
||||
static GstCaps *
|
||||
gst_pinos_sink_getcaps (GstBaseSink * bsink, GstCaps * filter)
|
||||
{
|
||||
return GST_BASE_SINK_CLASS (parent_class)->get_caps (bsink, filter);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
gst_pinos_sink_setcaps (GstBaseSink * bsink, GstCaps * caps)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue