mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
updsrc: clear error
This commit is contained in:
parent
786c801d81
commit
31edc9f7c0
1 changed files with 2 additions and 0 deletions
|
@ -393,6 +393,7 @@ retry:
|
|||
|| g_error_matches (err, G_IO_ERROR, G_IO_ERROR_CANCELLED)) {
|
||||
goto stopped;
|
||||
} else if (g_error_matches (err, G_IO_ERROR, G_IO_ERROR_TIMED_OUT)) {
|
||||
g_clear_error (&err);
|
||||
/* timeout, post element message */
|
||||
gst_element_post_message (GST_ELEMENT_CAST (udpsrc),
|
||||
gst_message_new_element (GST_OBJECT_CAST (udpsrc),
|
||||
|
@ -490,6 +491,7 @@ select_error:
|
|||
stopped:
|
||||
{
|
||||
GST_DEBUG ("stop called");
|
||||
g_clear_error (&err);
|
||||
return GST_FLOW_FLUSHING;
|
||||
}
|
||||
get_available_error:
|
||||
|
|
Loading…
Reference in a new issue