mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-18 05:16:05 +00:00
mssmanifest: fix typo
Fix typo that was making the advance fragment function return a wrong flow return in case it was already EOS
This commit is contained in:
parent
cb7e3d1f3b
commit
ebd0862ac1
1 changed files with 2 additions and 2 deletions
|
@ -569,8 +569,8 @@ gst_mss_stream_advance_fragment (GstMssStream * stream)
|
|||
return GST_FLOW_UNEXPECTED;
|
||||
|
||||
stream->current_fragment = g_list_next (stream->current_fragment);
|
||||
if (stream->current_fragment == NULL);
|
||||
return GST_FLOW_UNEXPECTED;
|
||||
if (stream->current_fragment == NULL)
|
||||
return GST_FLOW_UNEXPECTED;
|
||||
return GST_FLOW_OK;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue