trackobject: Implement the GESMetaContainerInterface

This commit is contained in:
Thibault Saunier 2012-11-20 18:25:31 -03:00
parent c2fe7f0c82
commit b39ed6a379

View file

@ -34,15 +34,19 @@
#include "ges-extractable.h"
#include "ges-track-object.h"
#include "ges-timeline-object.h"
#include "ges-meta-container.h"
#include <gobject/gvaluecollector.h>
static void ges_extractable_interface_init (GESExtractableInterface * iface);
static void ges_meta_container_interface_init
(GESMetaContainerInterface * iface);
G_DEFINE_ABSTRACT_TYPE_WITH_CODE (GESTrackObject, ges_track_object,
G_TYPE_INITIALLY_UNOWNED,
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));
struct _GESTrackObjectPrivate
{
@ -382,6 +386,12 @@ ges_extractable_interface_init (GESExtractableInterface * iface)
{
}
static void
ges_meta_container_interface_init (GESMetaContainerInterface * iface)
{
}
static inline gboolean
ges_track_object_set_start_internal (GESTrackObject * object, guint64 start)
{