mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 19:55:32 +00:00
appsink: unset flushing flag when starting
When we start again after being stopped, clear the flushing flag or else it will always be TRUE. Fixes #636769
This commit is contained in:
parent
e9d9474330
commit
5f36105915
1 changed files with 1 additions and 0 deletions
|
@ -630,6 +630,7 @@ gst_app_sink_start (GstBaseSink * psink)
|
|||
|
||||
g_mutex_lock (priv->mutex);
|
||||
GST_DEBUG_OBJECT (appsink, "starting");
|
||||
priv->flushing = FALSE;
|
||||
priv->started = TRUE;
|
||||
g_mutex_unlock (priv->mutex);
|
||||
|
||||
|
|
Loading…
Reference in a new issue