ges-pipeline: Rename add_timeline to set_timeline
authorAlexandru Băluț <alexandru.balut@gmail.com>
Tue, 4 Feb 2014 09:45:58 +0000 (10:45 +0100)
committerThibault Saunier <thibault.saunier@collabora.com>
Tue, 4 Feb 2014 13:17:47 +0000 (14:17 +0100)
API BREAKAGE:
        - ges_pipeline_add_timeline
        + ges_pipeline_set_timeline

19 files changed:
bindings/python/examples/simple.py
docs/libs/ges-sections.txt
ges/ges-pipeline.c
ges/ges-pipeline.h
tests/check/ges/integration.c
tests/check/ges/project.c
tests/check/ges/test-utils.c
tests/examples/concatenate.c
tests/examples/ges-ui.c
tests/examples/overlays.c
tests/examples/simple1.c
tests/examples/test1.c
tests/examples/test2.c
tests/examples/test3.c
tests/examples/test4.c
tests/examples/text_properties.c
tests/examples/thumbnails.c
tests/examples/transition.c
tools/ges-launch.c

index c7b291a..9628e1a 100644 (file)
@@ -35,7 +35,7 @@ class Simple:
 
     def _create_pipeline(self, timeline):
         self.pipeline = GES.Pipeline()
-        self.pipeline.add_timeline(timeline)
+        self.pipeline.set_timeline(timeline)
         bus = self.pipeline.get_bus()
         bus.add_signal_watch()
         bus.connect("message", self.bus_message_cb)
index 2312a54..d9af91e 100644 (file)
@@ -503,7 +503,7 @@ ges_clip_get_type
 <TITLE>GESPipeline</TITLE>
 GESPipeline
 ges_pipeline_new
-ges_pipeline_add_timeline
+ges_pipeline_set_timeline
 ges_pipeline_set_mode
 ges_pipeline_set_render_settings
 ges_pipeline_preview_get_audio_sink
index f163f8c..1bb82cf 100644 (file)
@@ -183,7 +183,7 @@ ges_pipeline_set_property (GObject * object, guint property_id,
           value);
       break;
     case PROP_TIMELINE:
-      ges_pipeline_add_timeline (GES_PIPELINE (object),
+      ges_pipeline_set_timeline (GES_PIPELINE (object),
           g_value_get_object (value));
       break;
     case PROP_MODE:
@@ -261,11 +261,11 @@ ges_pipeline_class_init (GESPipelineClass * klass)
    * GESPipeline:timeline:
    *
    * Timeline to use in this pipeline. See also
-   * ges_pipeline_add_timeline() for more info.
+   * ges_pipeline_set_timeline() for more info.
    */
   properties[PROP_TIMELINE] = g_param_spec_object ("timeline", "Timeline",
       "Timeline to use in this pipeline. See also "
-      "ges_pipeline_add_timeline() for more info.",
+      "ges_pipeline_set_timeline() for more info.",
       GES_TYPE_TIMELINE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
   g_object_class_install_property (object_class, PROP_TIMELINE,
       properties[PROP_TIMELINE]);
@@ -786,7 +786,7 @@ no_more_pads_cb (GstElement * timeline, GESPipeline * self)
 }
 
 /**
- * ges_pipeline_add_timeline:
+ * ges_pipeline_set_timeline:
  * @pipeline: a #GESPipeline
  * @timeline: the #GESTimeline to set on the @pipeline.
  *
@@ -798,7 +798,7 @@ no_more_pads_cb (GstElement * timeline, GESPipeline * self)
  * else FALSE.
  */
 gboolean
-ges_pipeline_add_timeline (GESPipeline * pipeline, GESTimeline * timeline)
+ges_pipeline_set_timeline (GESPipeline * pipeline, GESTimeline * timeline)
 {
   g_return_val_if_fail (GES_IS_PIPELINE (pipeline), FALSE);
   g_return_val_if_fail (GES_IS_TIMELINE (timeline), FALSE);
index f457718..9d00447 100644 (file)
@@ -79,7 +79,7 @@ GType ges_pipeline_get_type (void);
 
 GESPipeline* ges_pipeline_new (void);
 
-gboolean ges_pipeline_add_timeline (GESPipeline * pipeline,
+gboolean ges_pipeline_set_timeline (GESPipeline * pipeline,
                                             GESTimeline * timeline);
 
 gboolean ges_pipeline_set_render_settings (GESPipeline *pipeline,
index b1c32a3..daffab6 100644 (file)
@@ -350,7 +350,7 @@ check_timeline (GESTimeline * timeline)
   gst_bus_add_watch (bus, my_bus_callback, &ret);
   gst_object_unref (bus);
 
-  ges_pipeline_add_timeline (pipeline, timeline);
+  ges_pipeline_set_timeline (pipeline, timeline);
   gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_PLAYING);
   gst_element_get_state (GST_ELEMENT (pipeline), NULL, NULL, -1);
   GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipeline),
index ea496fd..35966db 100644 (file)
@@ -633,7 +633,7 @@ project_loaded_now_play_cb (GESProject * project, GESTimeline * timeline)
 
   GESPipeline *pipeline = ges_pipeline_new ();
 
-  fail_unless (ges_pipeline_add_timeline (pipeline, timeline));
+  fail_unless (ges_pipeline_set_timeline (pipeline, timeline));
 
   bus = gst_element_get_bus (GST_ELEMENT (pipeline));
   fail_if (gst_element_set_state (GST_ELEMENT (pipeline),
index 637a17e..f92c9b1 100644 (file)
@@ -97,7 +97,7 @@ ges_test_create_pipeline (GESTimeline * timeline)
   GESPipeline *pipeline;
 
   pipeline = ges_pipeline_new ();
-  fail_unless (ges_pipeline_add_timeline (pipeline, timeline));
+  fail_unless (ges_pipeline_set_timeline (pipeline, timeline));
 
   g_object_set (pipeline, "audio-sink", gst_element_factory_make ("fakesink",
           "test-audiofakesink"), "video-sink",
@@ -264,7 +264,7 @@ play_timeline (GESTimeline * timeline)
   gst_bus_add_watch (bus, (GstBusFunc) my_bus_callback, loop);
   gst_object_unref (bus);
 
-  ges_pipeline_add_timeline (pipeline, timeline);
+  ges_pipeline_set_timeline (pipeline, timeline);
   gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_PLAYING);
   gst_element_get_state (GST_ELEMENT (pipeline), NULL, NULL, -1);
 
index 307c2fa..421e523 100644 (file)
@@ -103,7 +103,7 @@ main (int argc, char **argv)
   pipeline = ges_pipeline_new ();
 
   /* Add the timeline to that pipeline */
-  if (!ges_pipeline_add_timeline (pipeline, timeline))
+  if (!ges_pipeline_set_timeline (pipeline, timeline))
     return -1;
 
   mainloop = g_main_loop_new (NULL, FALSE);
index c0280df..0d79e05 100644 (file)
@@ -1142,7 +1142,7 @@ app_launch_project (App * app, gchar * uri)
   bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));
   mainloop = g_main_loop_new (NULL, FALSE);
 
-  ges_pipeline_add_timeline (pipeline, timeline);
+  ges_pipeline_set_timeline (pipeline, timeline);
   ges_pipeline_set_mode (pipeline, TIMELINE_MODE_PREVIEW_VIDEO);
   gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_PLAYING);
   gst_bus_add_signal_watch (bus);
@@ -1268,7 +1268,7 @@ app_init (void)
   if (!(ret->pipeline = ges_pipeline_new ()))
     goto fail;
 
-  if (!ges_pipeline_add_timeline (ret->pipeline, ret->timeline))
+  if (!ges_pipeline_set_timeline (ret->pipeline, ret->timeline))
     goto fail;
 
   if (!(create_ui (ret)))
index 39dcec5..0be0ede 100644 (file)
@@ -92,7 +92,7 @@ make_timeline (char *path, float duration, char *text, guint32 color,
   ges_pipeline_set_mode (pipeline, TIMELINE_MODE_PREVIEW_VIDEO);
 
   timeline = ges_timeline_new ();
-  ges_pipeline_add_timeline (pipeline, timeline);
+  ges_pipeline_set_timeline (pipeline, timeline);
 
   trackv = GES_TRACK (ges_video_track_new ());
   ges_timeline_add_track (timeline, trackv);
index b1790b0..c7c6be8 100644 (file)
@@ -84,7 +84,7 @@ main (int argc, gchar ** argv)
       !ges_timeline_add_layer (timeline, layer2) ||
       !ges_timeline_add_track (timeline, tracka) ||
       !ges_timeline_add_track (timeline, trackv) ||
-      !ges_pipeline_add_timeline (pipeline, timeline))
+      !ges_pipeline_set_timeline (pipeline, timeline))
     return -1;
 
   if (1) {
index f2aeb31..72d382a 100644 (file)
@@ -67,7 +67,7 @@ main (int argc, gchar ** argv)
   pipeline = ges_pipeline_new ();
 
   /* Add the timeline to that pipeline */
-  if (!ges_pipeline_add_timeline (pipeline, timeline))
+  if (!ges_pipeline_set_timeline (pipeline, timeline))
     return -1;
 
   /* The following is standard usage of a GStreamer pipeline (note how you haven't
index 2bf4a53..c0bf994 100644 (file)
@@ -78,7 +78,7 @@ main (int argc, gchar ** argv)
   pipeline = ges_pipeline_new ();
 
   /* Add the timeline to that pipeline */
-  if (!ges_pipeline_add_timeline (pipeline, timeline))
+  if (!ges_pipeline_set_timeline (pipeline, timeline))
     return -1;
 
   /* The following is standard usage of a GStreamer pipeline (note how you
index fecd27b..d458c97 100644 (file)
@@ -77,7 +77,7 @@ main (int argc, gchar ** argv)
   pipeline = ges_pipeline_new ();
 
   /* Add the timeline to that pipeline */
-  if (!ges_pipeline_add_timeline (pipeline, timeline))
+  if (!ges_pipeline_set_timeline (pipeline, timeline))
     return -1;
 
   /* The following is standard usage of a GStreamer pipeline (note how you haven't
index 595545d..d38dab6 100644 (file)
@@ -134,7 +134,7 @@ main (int argc, gchar ** argv)
   pipeline = ges_pipeline_new ();
 
   /* Add the timeline to that pipeline */
-  if (!ges_pipeline_add_timeline (pipeline, timeline))
+  if (!ges_pipeline_set_timeline (pipeline, timeline))
     return -1;
 
 
index e5b84a9..a319f54 100644 (file)
@@ -65,7 +65,7 @@ make_timeline (char *path, float duration, char *text)
   ges_pipeline_set_mode (pipeline, TIMELINE_MODE_PREVIEW_VIDEO);
 
   timeline = ges_timeline_new ();
-  ges_pipeline_add_timeline (pipeline, timeline);
+  ges_pipeline_set_timeline (pipeline, timeline);
 
   trackv = GES_TRACK (ges_video_track_new ());
   ges_timeline_add_track (timeline, trackv);
index ba454fb..61ee21a 100644 (file)
@@ -101,7 +101,7 @@ create_timeline (void)
 
   pipeline = ges_pipeline_new ();
 
-  if (!ges_pipeline_add_timeline (pipeline, timeline))
+  if (!ges_pipeline_set_timeline (pipeline, timeline))
     return NULL;
 
   return pipeline;
index 6eb1fa9..e622773 100644 (file)
@@ -100,7 +100,7 @@ make_timeline (gchar * nick, gdouble tdur, gchar * patha, gfloat adur,
   ges_pipeline_set_mode (pipeline, TIMELINE_MODE_PREVIEW_VIDEO);
 
   timeline = ges_timeline_new ();
-  ges_pipeline_add_timeline (pipeline, timeline);
+  ges_pipeline_set_timeline (pipeline, timeline);
 
   trackv = GES_TRACK (ges_video_track_new ());
   ges_timeline_add_track (timeline, trackv);
index 9810a97..d61fb0a 100644 (file)
@@ -343,7 +343,7 @@ create_pipeline (GESTimeline ** ret_timeline, gchar * load_path,
   pipeline = ges_pipeline_new ();
 
   /* Add the timeline to that pipeline */
-  if (!ges_pipeline_add_timeline (pipeline, timeline))
+  if (!ges_pipeline_set_timeline (pipeline, timeline))
     goto failure;
 
   *ret_timeline = timeline;