gstharness: don't push the event to the queue before processing

The application might pull and unref it by the time the code gets
around to check it for EOS.
This commit is contained in:
Håvard Graff 2019-12-03 11:23:01 +00:00
parent 1375c53f04
commit a9162fc2ed

View file

@ -277,13 +277,13 @@ gst_harness_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
gst_object_unref (fwdpad);
HARNESS_LOCK (h);
} else {
g_async_queue_push (priv->sink_event_queue, event);
if (GST_EVENT_TYPE (event) == GST_EVENT_EOS) {
g_mutex_lock (&priv->buf_or_eos_mutex);
priv->eos_received = TRUE;
g_cond_signal (&priv->buf_or_eos_cond);
g_mutex_unlock (&priv->buf_or_eos_mutex);
}
g_async_queue_push (priv->sink_event_queue, event);
}
HARNESS_UNLOCK (h);