mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-09 00:45:56 +00:00
timeline-layer: implement the GESMetaContainer interface
This commit is contained in:
parent
3de2670b00
commit
6ea0dffb47
1 changed files with 13 additions and 1 deletions
|
@ -40,7 +40,13 @@ static void
|
|||
timeline_object_height_changed_cb (GESTimelineObject * obj,
|
||||
GESTrackEffect * tr_eff, GESTimelineObject * second_obj);
|
||||
|
||||
G_DEFINE_TYPE (GESTimelineLayer, ges_timeline_layer, G_TYPE_INITIALLY_UNOWNED);
|
||||
static void ges_meta_container_interface_init
|
||||
(GESMetaContainerInterface * iface);
|
||||
|
||||
G_DEFINE_TYPE_WITH_CODE (GESTimelineLayer, ges_timeline_layer,
|
||||
G_TYPE_INITIALLY_UNOWNED,
|
||||
G_IMPLEMENT_INTERFACE (GES_TYPE_META_CONTAINER,
|
||||
ges_meta_container_interface_init));
|
||||
|
||||
struct _GESTimelineLayerPrivate
|
||||
{
|
||||
|
@ -123,6 +129,12 @@ ges_timeline_layer_dispose (GObject * object)
|
|||
G_OBJECT_CLASS (ges_timeline_layer_parent_class)->dispose (object);
|
||||
}
|
||||
|
||||
static void
|
||||
ges_meta_container_interface_init (GESMetaContainerInterface * iface)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
static void
|
||||
ges_timeline_layer_class_init (GESTimelineLayerClass * klass)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue