mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 16:08:51 +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-extractable.h"
|
||||||
#include "ges-track-object.h"
|
#include "ges-track-object.h"
|
||||||
#include "ges-timeline-object.h"
|
#include "ges-timeline-object.h"
|
||||||
|
#include "ges-meta-container.h"
|
||||||
#include <gobject/gvaluecollector.h>
|
#include <gobject/gvaluecollector.h>
|
||||||
|
|
||||||
static void ges_extractable_interface_init (GESExtractableInterface * iface);
|
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_DEFINE_ABSTRACT_TYPE_WITH_CODE (GESTrackObject, ges_track_object,
|
||||||
G_TYPE_INITIALLY_UNOWNED,
|
G_TYPE_INITIALLY_UNOWNED,
|
||||||
G_IMPLEMENT_INTERFACE (GES_TYPE_EXTRACTABLE,
|
G_IMPLEMENT_INTERFACE (GES_TYPE_EXTRACTABLE, ges_extractable_interface_init)
|
||||||
ges_extractable_interface_init));
|
G_IMPLEMENT_INTERFACE (GES_TYPE_META_CONTAINER,
|
||||||
|
ges_meta_container_interface_init));
|
||||||
|
|
||||||
struct _GESTrackObjectPrivate
|
struct _GESTrackObjectPrivate
|
||||||
{
|
{
|
||||||
|
@ -382,6 +386,12 @@ ges_extractable_interface_init (GESExtractableInterface * iface)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
ges_meta_container_interface_init (GESMetaContainerInterface * iface)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
static inline gboolean
|
static inline gboolean
|
||||||
ges_track_object_set_start_internal (GESTrackObject * object, guint64 start)
|
ges_track_object_set_start_internal (GESTrackObject * object, guint64 start)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue