mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
Add new GESTrackSource
This commit is contained in:
parent
c4649938fd
commit
7860b814d6
5 changed files with 156 additions and 2 deletions
|
@ -17,7 +17,8 @@ libges_@GST_MAJORMINOR@_la_SOURCES = \
|
|||
ges-timeline-source.c \
|
||||
ges-timeline-transition.c \
|
||||
ges-track.c \
|
||||
ges-track-object.c
|
||||
ges-track-object.c \
|
||||
ges-track-source.c
|
||||
|
||||
libges_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/ges/
|
||||
libges_@GST_MAJORMINOR@include_HEADERS = \
|
||||
|
@ -31,7 +32,8 @@ libges_@GST_MAJORMINOR@include_HEADERS = \
|
|||
ges-timeline-source.h \
|
||||
ges-timeline-transition.h \
|
||||
ges-track.h \
|
||||
ges-track-object.h
|
||||
ges-track-object.h \
|
||||
ges-track-source.h
|
||||
|
||||
|
||||
libges_@GST_MAJORMINOR@_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
||||
|
|
88
ges/ges-track-source.c
Normal file
88
ges/ges-track-source.c
Normal file
|
@ -0,0 +1,88 @@
|
|||
/* GStreamer Editing Services
|
||||
* Copyright (C) 2009 Edward Hervey <bilboed@bilboed.com>
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the
|
||||
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include "ges-track-object.h"
|
||||
#include "ges-track-source.h"
|
||||
|
||||
G_DEFINE_TYPE (GESTrackSource, ges_track_source, GES_TYPE_TRACK_OBJECT);
|
||||
|
||||
static void
|
||||
ges_track_source_get_property (GObject * object, guint property_id,
|
||||
GValue * value, GParamSpec * pspec)
|
||||
{
|
||||
switch (property_id) {
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
ges_track_source_set_property (GObject * object, guint property_id,
|
||||
const GValue * value, GParamSpec * pspec)
|
||||
{
|
||||
switch (property_id) {
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
ges_track_source_dispose (GObject * object)
|
||||
{
|
||||
G_OBJECT_CLASS (ges_track_source_parent_class)->dispose (object);
|
||||
}
|
||||
|
||||
static void
|
||||
ges_track_source_finalize (GObject * object)
|
||||
{
|
||||
G_OBJECT_CLASS (ges_track_source_parent_class)->finalize (object);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
ges_track_source_create_gnl_object (GESTrackObject * object)
|
||||
{
|
||||
object->gnlobject = gst_element_factory_make ("gnlsource", NULL);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static void
|
||||
ges_track_source_class_init (GESTrackSourceClass * klass)
|
||||
{
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
||||
GESTrackObjectClass *track_class = GES_TRACK_OBJECT_CLASS (klass);
|
||||
|
||||
object_class->get_property = ges_track_source_get_property;
|
||||
object_class->set_property = ges_track_source_set_property;
|
||||
object_class->dispose = ges_track_source_dispose;
|
||||
object_class->finalize = ges_track_source_finalize;
|
||||
|
||||
track_class->create_gnl_object = ges_track_source_create_gnl_object;
|
||||
}
|
||||
|
||||
static void
|
||||
ges_track_source_init (GESTrackSource * self)
|
||||
{
|
||||
}
|
||||
|
||||
GESTrackSource *
|
||||
ges_track_source_new (void)
|
||||
{
|
||||
return g_object_new (GES_TYPE_TRACK_SOURCE, NULL);
|
||||
}
|
60
ges/ges-track-source.h
Normal file
60
ges/ges-track-source.h
Normal file
|
@ -0,0 +1,60 @@
|
|||
/* GStreamer Editing Services
|
||||
* Copyright (C) 2009 Edward Hervey <bilboed@bilboed.com>
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the
|
||||
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef _GES_TRACK_SOURCE
|
||||
#define _GES_TRACK_SOURCE
|
||||
|
||||
#include <glib-object.h>
|
||||
#include <ges/ges-types.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define GES_TYPE_TRACK_SOURCE ges_track_source_get_type()
|
||||
|
||||
#define GES_TRACK_SOURCE(obj) \
|
||||
(G_TYPE_CHECK_INSTANCE_CAST ((obj), GES_TYPE_TRACK_SOURCE, GESTrackSource))
|
||||
|
||||
#define GES_TRACK_SOURCE_CLASS(klass) \
|
||||
(G_TYPE_CHECK_CLASS_CAST ((klass), GES_TYPE_TRACK_SOURCE, GESTrackSourceClass))
|
||||
|
||||
#define GES_IS_TRACK_SOURCE(obj) \
|
||||
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), GES_TYPE_TRACK_SOURCE))
|
||||
|
||||
#define GES_IS_TRACK_SOURCE_CLASS(klass) \
|
||||
(G_TYPE_CHECK_CLASS_TYPE ((klass), GES_TYPE_TRACK_SOURCE))
|
||||
|
||||
#define GES_TRACK_SOURCE_GET_CLASS(obj) \
|
||||
(G_TYPE_INSTANCE_GET_CLASS ((obj), GES_TYPE_TRACK_SOURCE, GESTrackSourceClass))
|
||||
|
||||
struct _GESTrackSource {
|
||||
GESTrackObject parent;
|
||||
};
|
||||
|
||||
struct _GESTrackSourceClass {
|
||||
GESTrackObjectClass parent_class;
|
||||
};
|
||||
|
||||
GType ges_track_source_get_type (void);
|
||||
|
||||
GESTrackSource* ges_track_source_new (void);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* _GES_TRACK_SOURCE */
|
||||
|
|
@ -47,5 +47,8 @@ typedef struct _GESTrackClass GESTrackClass;
|
|||
typedef struct _GESTrackObject GESTrackObject;
|
||||
typedef struct _GESTrackObjectClass GESTrackObjectClass;
|
||||
|
||||
typedef struct _GESTrackSource GESTrackSource;
|
||||
typedef struct _GESTrackSourceClass GESTrackSourceClass;
|
||||
|
||||
|
||||
#endif /* __GES_TYPES_H__ */
|
||||
|
|
|
@ -34,6 +34,7 @@
|
|||
#include <ges/ges-timeline-transition.h>
|
||||
#include <ges/ges-track.h>
|
||||
#include <ges/ges-track-object.h>
|
||||
#include <ges/ges-track-source.h>
|
||||
|
||||
GST_DEBUG_CATEGORY_EXTERN (ges_debug);
|
||||
#define GST_CAT_DEFAULT ges_debug
|
||||
|
|
Loading…
Reference in a new issue