ges:validate: Properly error when editing container fails

This commit is contained in:
Thibault Saunier 2019-07-10 12:06:01 -04:00
parent a55296314c
commit 9dc958e8ab

View file

@ -340,7 +340,12 @@ _edit_container (GstValidateScenario * scenario, GstValidateAction * action)
clip_name = gst_structure_get_string (action->structure, "container-name");
container = ges_timeline_get_element (timeline, clip_name);
g_return_val_if_fail (GES_IS_CONTAINER (container), FALSE);
if (!container) {
GST_VALIDATE_REPORT (scenario,
g_quark_from_string ("scenario::execution-error"),
"Could not find container %s", clip_name);
return GST_VALIDATE_EXECUTE_ACTION_ERROR_REPORTED;
}
if (!gst_validate_action_get_clocktime (scenario, action,
"position", &position)) {