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:
Thiago Santos 2012-12-28 00:49:24 -03:00
parent cb7e3d1f3b
commit ebd0862ac1

View file

@ -569,8 +569,8 @@ gst_mss_stream_advance_fragment (GstMssStream * stream)
return GST_FLOW_UNEXPECTED; return GST_FLOW_UNEXPECTED;
stream->current_fragment = g_list_next (stream->current_fragment); stream->current_fragment = g_list_next (stream->current_fragment);
if (stream->current_fragment == NULL); if (stream->current_fragment == NULL)
return GST_FLOW_UNEXPECTED; return GST_FLOW_UNEXPECTED;
return GST_FLOW_OK; return GST_FLOW_OK;
} }