mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
validate: Fix 'repeat' parameter on non ASYNC action types
This commit is contained in:
parent
05815d4b4f
commit
7d3ada4f4e
1 changed files with 1 additions and 1 deletions
|
@ -2177,7 +2177,7 @@ execute_next_action_full (GstValidateScenario * scenario, GstMessage * message)
|
|||
act->priv->state = _execute_sub_action_action (act);
|
||||
}
|
||||
|
||||
if (act->priv->state != GST_VALIDATE_EXECUTE_ACTION_ASYNC) {
|
||||
if (act->priv->state != GST_VALIDATE_EXECUTE_ACTION_ASYNC && act->repeat <= 0) {
|
||||
tmp = priv->actions;
|
||||
priv->actions = g_list_remove_link (priv->actions, tmp);
|
||||
|
||||
|
|
Loading…
Reference in a new issue