Commit 33206c29 authored by Guillaume Desmottes's avatar Guillaume Desmottes

gstnicesink: disable drop out of segment on nicesink

It's very tricky and unintuitive to have webrtcbin not sending data
because of the segment.

Fix https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/907
parent 21690901
......@@ -205,6 +205,10 @@ gst_nice_sink_init (GstNiceSink *sink)
sink->n_messages = 1;
sink->messages = g_new (NiceOutputMessage, sink->n_messages);
#endif
#if GST_CHECK_VERSION (1,12,0)
gst_base_sink_set_drop_out_of_segment (GST_BASE_SINK (sink), FALSE);
#endif
}
static void
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment