mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
tests: Unref the GList returned by ges_timeline_get_layers...
... in addition to the content themselves
This commit is contained in:
parent
ae3683404f
commit
6b8f736e21
1 changed files with 8 additions and 12 deletions
|
@ -76,9 +76,8 @@ GST_START_TEST (test_ges_scenario)
|
|||
|
||||
layers = ges_timeline_get_layers (timeline);
|
||||
fail_unless (g_list_find (layers, layer) != NULL);
|
||||
for (tmp = layers; tmp; tmp = g_list_next (tmp)) {
|
||||
g_object_unref (tmp->data);
|
||||
}
|
||||
g_list_foreach (layers, (GFunc) g_object_unref, NULL);
|
||||
g_list_free (layers);
|
||||
|
||||
/* Give the Timeline a Track */
|
||||
GST_DEBUG ("Create a Track");
|
||||
|
@ -245,9 +244,8 @@ GST_START_TEST (test_ges_timeline_add_layer)
|
|||
fail_unless (layer->timeline == timeline);
|
||||
layers = ges_timeline_get_layers (timeline);
|
||||
fail_unless (g_list_find (layers, layer) != NULL);
|
||||
for (tmp = layers; tmp; tmp = g_list_next (tmp)) {
|
||||
g_object_unref (tmp->data);
|
||||
}
|
||||
g_list_foreach (layers, (GFunc) g_object_unref, NULL);
|
||||
g_list_free (layers);
|
||||
|
||||
/* Make sure the associated TrackObjects are in the Track */
|
||||
trackobjects =
|
||||
|
@ -357,9 +355,8 @@ GST_START_TEST (test_ges_timeline_add_layer_first)
|
|||
fail_unless (layer->timeline == timeline);
|
||||
layers = ges_timeline_get_layers (timeline);
|
||||
fail_unless (g_list_find (layers, layer) != NULL);
|
||||
for (tmp = layers; tmp; tmp = g_list_next (tmp)) {
|
||||
g_object_unref (tmp->data);
|
||||
}
|
||||
g_list_foreach (layers, (GFunc) g_object_unref, NULL);
|
||||
g_list_free (layers);
|
||||
|
||||
GST_DEBUG ("Add the track to the timeline");
|
||||
fail_unless (ges_timeline_add_track (timeline, track));
|
||||
|
@ -470,9 +467,8 @@ GST_START_TEST (test_ges_timeline_remove_track)
|
|||
|
||||
layers = ges_timeline_get_layers (timeline);
|
||||
fail_unless (g_list_find (layers, layer) != NULL);
|
||||
for (tmp = layers; tmp; tmp = g_list_next (tmp)) {
|
||||
g_object_unref (tmp->data);
|
||||
}
|
||||
g_list_foreach (layers, (GFunc) g_object_unref, NULL);
|
||||
g_list_free (layers);
|
||||
|
||||
GST_DEBUG ("Add the track to the timeline");
|
||||
fail_unless (ges_timeline_add_track (timeline, track));
|
||||
|
|
Loading…
Reference in a new issue