2009-08-04 15:13:11 +00:00
|
|
|
/* GStreamer Editing Services
|
2009-11-30 14:14:25 +00:00
|
|
|
* Copyright (C) 2009 Edward Hervey <edward.hervey@collabora.co.uk>
|
|
|
|
* 2009 Nokia Corporation
|
2009-08-04 15:13:11 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-04 00:25:20 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2009-08-04 15:13:11 +00:00
|
|
|
*/
|
|
|
|
|
2020-03-17 21:13:51 +00:00
|
|
|
#pragma once
|
2009-08-04 15:13:11 +00:00
|
|
|
|
|
|
|
#include <glib-object.h>
|
|
|
|
#include <gst/gst.h>
|
2010-09-23 16:33:27 +00:00
|
|
|
#include <gst/pbutils/gstdiscoverer.h>
|
2009-08-06 10:14:37 +00:00
|
|
|
#include <ges/ges-types.h>
|
2009-08-04 15:13:11 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GES_TYPE_TIMELINE ges_timeline_get_type()
|
2020-03-17 18:51:39 +00:00
|
|
|
GES_DECLARE_TYPE(Timeline, timeline, TIMELINE);
|
2009-08-04 15:13:11 +00:00
|
|
|
|
2012-11-11 16:51:45 +00:00
|
|
|
#define GES_TIMELINE_GET_TRACKS(obj) (GES_TIMELINE (obj)->tracks)
|
|
|
|
#define GES_TIMELINE_GET_LAYERS(obj) (GES_TIMELINE (obj)->layers)
|
|
|
|
|
2012-11-24 03:09:28 +00:00
|
|
|
/**
|
|
|
|
* ges_timeline_get_project:
|
2014-05-01 14:59:15 +00:00
|
|
|
* @obj: The #GESTimeline from which to retrieve the project
|
2012-11-24 03:09:28 +00:00
|
|
|
*
|
2019-12-18 20:33:45 +00:00
|
|
|
* Helper macro to retrieve the project from which @obj was extracted
|
2012-11-24 03:09:28 +00:00
|
|
|
*/
|
2014-05-01 14:59:15 +00:00
|
|
|
#define ges_timeline_get_project(obj) (GES_PROJECT (ges_extractable_get_asset (GES_EXTRACTABLE(obj))))
|
2012-11-24 03:09:28 +00:00
|
|
|
|
2011-01-08 10:22:36 +00:00
|
|
|
typedef struct _GESTimelinePrivate GESTimelinePrivate;
|
|
|
|
|
2009-09-14 15:00:13 +00:00
|
|
|
/**
|
|
|
|
* GESTimeline:
|
2019-12-18 20:33:45 +00:00
|
|
|
* @layers: (element-type GES.Layer): A list of #GESLayer-s sorted by
|
|
|
|
* priority. NOTE: Do not modify.
|
|
|
|
* @tracks: Deprecated:1.10: (element-type GES.Track): This is not thread
|
|
|
|
* safe, use #ges_timeline_get_tracks instead.
|
2009-09-14 15:00:13 +00:00
|
|
|
*/
|
2009-08-04 15:16:31 +00:00
|
|
|
struct _GESTimeline {
|
2009-08-04 15:13:11 +00:00
|
|
|
GstBin parent;
|
|
|
|
|
2013-03-01 22:18:10 +00:00
|
|
|
/*< public > */
|
2012-11-11 16:51:45 +00:00
|
|
|
/* <readonly> */
|
|
|
|
GList *layers;
|
|
|
|
GList *tracks;
|
|
|
|
|
2009-09-14 15:00:13 +00:00
|
|
|
/*< private >*/
|
2011-01-08 10:22:36 +00:00
|
|
|
GESTimelinePrivate *priv;
|
2010-11-29 12:24:13 +00:00
|
|
|
|
|
|
|
/* Padding for API extension */
|
|
|
|
gpointer _ges_reserved[GES_PADDING];
|
2009-08-04 15:16:31 +00:00
|
|
|
};
|
2009-08-04 15:13:11 +00:00
|
|
|
|
2010-05-31 16:59:12 +00:00
|
|
|
/**
|
|
|
|
* GESTimelineClass:
|
|
|
|
* @parent_class: parent class
|
|
|
|
*/
|
|
|
|
|
2009-08-04 15:16:31 +00:00
|
|
|
struct _GESTimelineClass {
|
2009-08-04 15:13:11 +00:00
|
|
|
GstBinClass parent_class;
|
2009-08-06 15:38:43 +00:00
|
|
|
|
2010-05-31 16:59:12 +00:00
|
|
|
/*< private >*/
|
|
|
|
|
2009-08-06 15:38:43 +00:00
|
|
|
void (*track_added) (GESTimeline *timeline, GESTrack * track);
|
|
|
|
void (*track_removed) (GESTimeline *timeline, GESTrack * track);
|
2013-04-23 23:04:04 +00:00
|
|
|
void (*layer_added) (GESTimeline *timeline, GESLayer *layer);
|
|
|
|
void (*layer_removed) (GESTimeline *timeline, GESLayer *layer);
|
2016-02-16 12:49:57 +00:00
|
|
|
void (*group_added) (GESTimeline *timeline, GESGroup *group);
|
|
|
|
void (*group_removed) (GESTimeline *timeline, GESGroup *group, GPtrArray *children);
|
2010-11-29 12:24:13 +00:00
|
|
|
|
|
|
|
/* Padding for API extension */
|
|
|
|
gpointer _ges_reserved[GES_PADDING];
|
2009-08-04 15:16:31 +00:00
|
|
|
};
|
2009-08-04 15:13:11 +00:00
|
|
|
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2009-08-04 15:13:11 +00:00
|
|
|
GESTimeline* ges_timeline_new (void);
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2012-09-23 00:05:42 +00:00
|
|
|
GESTimeline* ges_timeline_new_from_uri (const gchar *uri, GError **error);
|
2009-08-04 15:13:11 +00:00
|
|
|
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2012-09-23 00:05:42 +00:00
|
|
|
gboolean ges_timeline_load_from_uri (GESTimeline *timeline, const gchar *uri, GError **error);
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2012-11-24 03:09:28 +00:00
|
|
|
gboolean ges_timeline_save_to_uri (GESTimeline * timeline, const gchar * uri,
|
|
|
|
GESAsset *formatter_asset, gboolean overwrite, GError ** error);
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2013-04-23 23:04:04 +00:00
|
|
|
gboolean ges_timeline_add_layer (GESTimeline *timeline, GESLayer *layer);
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2013-04-23 23:04:04 +00:00
|
|
|
GESLayer * ges_timeline_append_layer (GESTimeline * timeline);
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2013-04-23 23:04:04 +00:00
|
|
|
gboolean ges_timeline_remove_layer (GESTimeline *timeline, GESLayer *layer);
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2011-01-08 10:22:36 +00:00
|
|
|
GList* ges_timeline_get_layers (GESTimeline *timeline);
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2015-02-20 11:24:49 +00:00
|
|
|
GESLayer* ges_timeline_get_layer (GESTimeline *timeline, guint priority);
|
2009-08-04 15:13:11 +00:00
|
|
|
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2009-08-04 15:13:11 +00:00
|
|
|
gboolean ges_timeline_add_track (GESTimeline *timeline, GESTrack *track);
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2009-08-04 15:13:11 +00:00
|
|
|
gboolean ges_timeline_remove_track (GESTimeline *timeline, GESTrack *track);
|
|
|
|
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2009-09-08 17:44:03 +00:00
|
|
|
GESTrack * ges_timeline_get_track_for_pad (GESTimeline *timeline, GstPad *pad);
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2014-08-13 11:15:02 +00:00
|
|
|
GstPad * ges_timeline_get_pad_for_track (GESTimeline * timeline, GESTrack *track);
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2010-04-20 09:48:21 +00:00
|
|
|
GList *ges_timeline_get_tracks (GESTimeline *timeline);
|
2009-09-08 17:44:03 +00:00
|
|
|
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2016-09-06 12:27:38 +00:00
|
|
|
GList* ges_timeline_get_groups (GESTimeline * timeline);
|
|
|
|
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2013-06-09 16:29:05 +00:00
|
|
|
gboolean ges_timeline_commit (GESTimeline * timeline);
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2015-04-08 19:38:48 +00:00
|
|
|
gboolean ges_timeline_commit_sync (GESTimeline * timeline);
|
2021-08-03 09:31:07 +00:00
|
|
|
GES_API
|
|
|
|
void ges_timeline_freeze_commit (GESTimeline * timeline);
|
|
|
|
GES_API
|
|
|
|
void ges_timeline_thaw_commit (GESTimeline * timeline);
|
2011-08-03 00:33:10 +00:00
|
|
|
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2012-05-18 00:49:01 +00:00
|
|
|
GstClockTime ges_timeline_get_duration (GESTimeline *timeline);
|
|
|
|
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2013-04-24 12:18:01 +00:00
|
|
|
gboolean ges_timeline_get_auto_transition (GESTimeline * timeline);
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2013-04-24 12:18:01 +00:00
|
|
|
void ges_timeline_set_auto_transition (GESTimeline * timeline, gboolean auto_transition);
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2013-07-25 02:37:06 +00:00
|
|
|
GstClockTime ges_timeline_get_snapping_distance (GESTimeline * timeline);
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2013-07-25 02:37:06 +00:00
|
|
|
void ges_timeline_set_snapping_distance (GESTimeline * timeline, GstClockTime snapping_distance);
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2014-02-18 14:14:40 +00:00
|
|
|
GESTimelineElement * ges_timeline_get_element (GESTimeline * timeline, const gchar *name);
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2014-11-30 23:38:07 +00:00
|
|
|
gboolean ges_timeline_is_empty (GESTimeline * timeline);
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API
|
2018-02-25 22:31:33 +00:00
|
|
|
GESTimelineElement * ges_timeline_paste_element (GESTimeline * timeline,
|
|
|
|
GESTimelineElement * element, GstClockTime position, gint layer_priority);
|
2015-12-12 11:29:50 +00:00
|
|
|
GES_API
|
|
|
|
gboolean ges_timeline_move_layer (GESTimeline *timeline, GESLayer *layer, guint new_layer_priority);
|
2013-04-24 12:18:01 +00:00
|
|
|
|
2020-02-21 12:17:11 +00:00
|
|
|
GES_API
|
|
|
|
GstClockTime ges_timeline_get_frame_time(GESTimeline *self,
|
|
|
|
GESFrameNumber frame_number);
|
|
|
|
|
|
|
|
GES_API
|
|
|
|
GESFrameNumber ges_timeline_get_frame_at (GESTimeline *self,
|
|
|
|
GstClockTime timestamp);
|
|
|
|
|
2009-08-04 15:13:11 +00:00
|
|
|
G_END_DECLS
|