mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
trackobject: Implement the GESMetaContainerInterface
This commit is contained in:
parent
c2fe7f0c82
commit
b39ed6a379
1 changed files with 12 additions and 2 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue