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:
Wim Taymans 2010-12-10 18:57:56 +01:00
parent e9d9474330
commit 5f36105915

View file

@ -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);