mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
souphttpsrc: Reset retry_count to 0 when GST_FLOW_FLUSHING
If a lot of seek method is called very quickly, sometimes data reading and do_request occurs while seek flush event is occurring and error occurs because retry_count reaches to the max. Thus, reset retry_count if flush occurs after do_request and read_buffer. https://bugzilla.gnome.org/show_bug.cgi?id=790199
This commit is contained in:
parent
54f312644e
commit
129eecf012
1 changed files with 7 additions and 0 deletions
|
@ -1835,6 +1835,13 @@ done:
|
|||
goto retry;
|
||||
}
|
||||
}
|
||||
|
||||
if (ret == GST_FLOW_FLUSHING) {
|
||||
g_mutex_lock (&src->mutex);
|
||||
src->retry_count = 0;
|
||||
g_mutex_unlock (&src->mutex);
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue