mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
ges: Do not try to set read only properties
When copying and splitting clips Fixes T7375
This commit is contained in:
parent
af27a11d65
commit
9add236a0e
1 changed files with 2 additions and 0 deletions
|
@ -1200,6 +1200,8 @@ ges_track_element_copy_properties (GESTimelineElement * element,
|
|||
ges_track_element_list_children_properties (GES_TRACK_ELEMENT (element),
|
||||
&n_specs);
|
||||
for (n = 0; n < n_specs; ++n) {
|
||||
if (!(specs[n]->flags & G_PARAM_WRITABLE))
|
||||
continue;
|
||||
g_value_init (&val, specs[n]->value_type);
|
||||
ges_track_element_get_child_property_by_pspec (GES_TRACK_ELEMENT (element),
|
||||
specs[n], &val);
|
||||
|
|
Loading…
Reference in a new issue