From bed0f51d6c86815d11e00b956512bab76432c792 Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Wed, 2 Jul 2014 17:53:55 +0200 Subject: [PATCH] validate: Execute actions if we get seeked in ready state --- validate/gst/validate/gst-validate-scenario.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validate/gst/validate/gst-validate-scenario.c b/validate/gst/validate/gst-validate-scenario.c index 796c4f6afc..1c9aad163e 100644 --- a/validate/gst/validate/gst-validate-scenario.c +++ b/validate/gst/validate/gst-validate-scenario.c @@ -674,7 +674,7 @@ get_position (GstValidateScenario * scenario) } /* TODO what about non flushing seeks? */ - if (priv->last_seek) { + if (priv->last_seek && priv->target_state > GST_STATE_READY) { GST_INFO_OBJECT (scenario, "Still seeking -- not executing action"); return TRUE; }