mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
timeline: Implement the GESMetaContainerInterface
This commit is contained in:
parent
dbab748bfc
commit
8ff97af65d
1 changed files with 10 additions and 2 deletions
|
@ -47,10 +47,13 @@ typedef struct _MoveContext MoveContext;
|
|||
|
||||
static inline void init_movecontext (MoveContext * mv_ctx);
|
||||
static void ges_extractable_interface_init (GESExtractableInterface * iface);
|
||||
static void ges_meta_container_interface_init
|
||||
(GESMetaContainerInterface * iface);
|
||||
|
||||
G_DEFINE_TYPE_WITH_CODE (GESTimeline, ges_timeline, GST_TYPE_BIN,
|
||||
G_IMPLEMENT_INTERFACE (GES_TYPE_EXTRACTABLE,
|
||||
ges_extractable_interface_init));
|
||||
G_IMPLEMENT_INTERFACE (GES_TYPE_EXTRACTABLE, ges_extractable_interface_init)
|
||||
G_IMPLEMENT_INTERFACE (GES_TYPE_META_CONTAINER,
|
||||
ges_meta_container_interface_init));
|
||||
|
||||
|
||||
GST_DEBUG_CATEGORY_STATIC (ges_timeline_debug);
|
||||
|
@ -213,6 +216,11 @@ ges_extractable_interface_init (GESExtractableInterface * iface)
|
|||
iface->get_id = extractable_get_id;
|
||||
}
|
||||
|
||||
static void
|
||||
ges_meta_container_interface_init (GESMetaContainerInterface * iface)
|
||||
{
|
||||
}
|
||||
|
||||
/* Internal methods */
|
||||
static gboolean
|
||||
ges_timeline_enable_update_internal (GESTimeline * timeline, gboolean enabled)
|
||||
|
|
Loading…
Reference in a new issue