mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-21 15:56:42 +00:00
Fixed regression after the introduction of the multi-screen support, preventing the pipeline from stopping properly
This commit is contained in:
parent
6f5d6f91ff
commit
3cb7b12cbe
1 changed files with 1 additions and 1 deletions
|
@ -998,7 +998,7 @@ end_of_manifest:
|
||||||
{
|
{
|
||||||
GST_INFO_OBJECT (demux, "Reached end of manifest, sending EOS");
|
GST_INFO_OBJECT (demux, "Reached end of manifest, sending EOS");
|
||||||
guint i = 0;
|
guint i = 0;
|
||||||
for (i = 0; i < nb_adaptation_set; i++) {
|
for (i = 0; i < gst_mpdparser_get_nb_active_stream (demux->client); i++) {
|
||||||
gst_pad_push_event (demux->srcpad[i], gst_event_new_eos ());
|
gst_pad_push_event (demux->srcpad[i], gst_event_new_eos ());
|
||||||
}
|
}
|
||||||
gst_dash_demux_stop (demux);
|
gst_dash_demux_stop (demux);
|
||||||
|
|
Loading…
Reference in a new issue