summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorThibault Saunier <thibault.saunier@collabora.com>2013-04-23 20:04:04 -0300
committerThibault Saunier <thibault.saunier@collabora.com>2013-04-23 20:22:31 -0300
commitb2b96c743de11355719aa77dcc73d51095d31041 (patch)
tree900f58f77a2b7fdfd47c867b1623f60bab1cf9a9 /tools
parentb5c52a17ec9eb2a86ffd03ee6ace6d6e9173a1ec (diff)
Rename GESTimelineLayer to GESLayer
Diffstat (limited to 'tools')
-rw-r--r--tools/ges-launch.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/ges-launch.c b/tools/ges-launch.c
index 584f55e..cef2409 100644
--- a/tools/ges-launch.c
+++ b/tools/ges-launch.c
@@ -128,7 +128,7 @@ make_encoding_profile (gchar * audio, gchar * video, gchar * video_restriction,
static GESTimeline *
create_timeline (int nbargs, gchar ** argv, gchar * audio, gchar * video)
{
- GESTimelineLayer *layer;
+ GESLayer *layer;
GESTrack *tracka = NULL, *trackv = NULL;
GESTimeline *timeline;
guint i;
@@ -141,7 +141,7 @@ create_timeline (int nbargs, gchar ** argv, gchar * audio, gchar * video)
trackv = ges_track_video_raw_new ();
/* We are only going to be doing one layer of clips */
- layer = (GESTimelineLayer *) ges_simple_timeline_layer_new ();
+ layer = (GESLayer *) ges_simple_layer_new ();
/* Add the tracks and the layer to the timeline */
if (!ges_timeline_add_layer (timeline, layer) ||
@@ -222,9 +222,9 @@ create_timeline (int nbargs, gchar ** argv, gchar * audio, gchar * video)
g_free (uri);
}
- /* Since we're using a GESSimpleTimelineLayer, objects will be automatically
+ /* Since we're using a GESSimpleLayer, objects will be automatically
* appended to the end of the layer */
- ges_timeline_layer_add_clip (layer, clip);
+ ges_layer_add_clip (layer, clip);
}
return timeline;