Instead of doing it at the time of resetting `object->in_composition`
when user calls `gst_bin_remove` do it after we actually removed
it from the object thread, and do it in the `nle_object_reset`
method where it belongs
Fixes https://gitlab.freedesktop.org/gstreamer/gst-editing-services/issues/96
object = NLE_OBJECT (element);
- object->in_composition = FALSE;
_add_remove_object_action (comp, object);
return TRUE;
object->inpoint = GST_CLOCK_TIME_NONE;
object->priority = 0;
object->active = TRUE;
+ object->in_composition = FALSE;
}
GType