mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-19 05:45:58 +00:00
xml-formatter: strip "caps" from the "properties" attribute of a track
element We already have the separate "caps" attribute for xges track elements, which is actually used in parsing.
This commit is contained in:
parent
bd3518abc5
commit
f19bf3edb4
1 changed files with 1 additions and 1 deletions
|
@ -1354,7 +1354,7 @@ _save_tracks (GESXmlFormatter * self, GString * str, GESTimeline * timeline,
|
|||
tracks = ges_timeline_get_tracks (timeline);
|
||||
for (tmp = tracks; tmp; tmp = tmp->next) {
|
||||
track = GES_TRACK (tmp->data);
|
||||
properties = _serialize_properties (G_OBJECT (track), NULL);
|
||||
properties = _serialize_properties (G_OBJECT (track), "caps", NULL);
|
||||
strtmp = gst_caps_to_string (ges_track_get_caps (track));
|
||||
metas = ges_meta_container_metas_to_string (GES_META_CONTAINER (track));
|
||||
append_escaped (str,
|
||||
|
|
Loading…
Reference in a new issue