2009-08-07 14:45:16 +00:00
|
|
|
/* GStreamer Editing Services
|
2009-11-30 14:14:25 +00:00
|
|
|
* Copyright (C) 2009 Edward Hervey <edward.hervey@collabora.co.uk>
|
|
|
|
* 2009 Nokia Corporation
|
2009-08-07 14:45:16 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2009-09-10 16:40:51 +00:00
|
|
|
/**
|
|
|
|
* SECTION:ges-custom-timeline-source
|
|
|
|
* @short_description: Convenience #GESTimelineSource
|
|
|
|
*
|
|
|
|
* #GESCustomTimelineSource allows creating #GESTimelineSource(s) without the
|
|
|
|
* need to subclass.
|
|
|
|
*
|
|
|
|
* Its usage should be limited to testing and prototyping purposes.
|
|
|
|
*/
|
|
|
|
|
2009-08-07 14:45:16 +00:00
|
|
|
#include "ges-internal.h"
|
|
|
|
#include "ges-custom-timeline-source.h"
|
|
|
|
#include "ges-timeline-source.h"
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (GESCustomTimelineSource, ges_cust_timeline_src,
|
2009-11-25 10:55:50 +00:00
|
|
|
GES_TYPE_TIMELINE_SOURCE);
|
2009-08-07 14:45:16 +00:00
|
|
|
|
2009-11-25 10:55:50 +00:00
|
|
|
static gboolean
|
|
|
|
ges_cust_timeline_src_fill_track_object (GESTimelineObject * object,
|
2009-08-07 14:45:16 +00:00
|
|
|
GESTrackObject * trobject, GstElement * gnlobj);
|
|
|
|
|
2009-11-25 10:55:50 +00:00
|
|
|
static void
|
|
|
|
ges_cust_timeline_src_get_property (GObject * object,
|
2009-08-07 14:45:16 +00:00
|
|
|
guint property_id, GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
switch (property_id) {
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ges_cust_timeline_src_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_cust_timeline_src_dispose (GObject * object)
|
|
|
|
{
|
|
|
|
G_OBJECT_CLASS (ges_cust_timeline_src_parent_class)->dispose (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ges_cust_timeline_src_finalize (GObject * object)
|
|
|
|
{
|
|
|
|
G_OBJECT_CLASS (ges_cust_timeline_src_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ges_cust_timeline_src_class_init (GESCustomTimelineSourceClass * klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
GESTimelineObjectClass *tlobj_class = GES_TIMELINE_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
object_class->get_property = ges_cust_timeline_src_get_property;
|
|
|
|
object_class->set_property = ges_cust_timeline_src_set_property;
|
|
|
|
object_class->dispose = ges_cust_timeline_src_dispose;
|
|
|
|
object_class->finalize = ges_cust_timeline_src_finalize;
|
|
|
|
|
|
|
|
tlobj_class->fill_track_object = ges_cust_timeline_src_fill_track_object;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ges_cust_timeline_src_init (GESCustomTimelineSource * self)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
ges_cust_timeline_src_fill_track_object (GESTimelineObject * object,
|
|
|
|
GESTrackObject * trobject, GstElement * gnlobj)
|
|
|
|
{
|
|
|
|
gboolean res;
|
|
|
|
|
2009-09-08 16:47:46 +00:00
|
|
|
GST_DEBUG ("Calling callback (timelineobj:%p, trackobj:%p, gnlobj:%p)",
|
2009-08-07 14:45:16 +00:00
|
|
|
object, trobject, gnlobj);
|
|
|
|
|
|
|
|
res =
|
|
|
|
GES_CUSTOM_TIMELINE_SOURCE (object)->filltrackobjectfunc (object,
|
2009-08-07 18:31:11 +00:00
|
|
|
trobject, gnlobj, GES_CUSTOM_TIMELINE_SOURCE (object)->user_data);
|
2009-08-07 14:45:16 +00:00
|
|
|
|
|
|
|
GST_DEBUG ("Returning res:%d", res);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2009-09-16 10:37:45 +00:00
|
|
|
/**
|
|
|
|
* ges_custom_timeline_source_new:
|
|
|
|
* @func: The #FillTrackObjectUserFunc that will be used to fill the track objects.
|
|
|
|
* @user_data: a gpointer that will be used when @func is called.
|
|
|
|
*
|
|
|
|
* Creates a new #GESCustomTimelineSource.
|
|
|
|
*
|
|
|
|
* Returns: The new #GESCustomTimelineSource.
|
|
|
|
*/
|
2009-08-07 14:45:16 +00:00
|
|
|
GESCustomTimelineSource *
|
2009-08-07 18:31:11 +00:00
|
|
|
ges_custom_timeline_source_new (FillTrackObjectUserFunc func,
|
|
|
|
gpointer user_data)
|
2009-08-07 14:45:16 +00:00
|
|
|
{
|
|
|
|
GESCustomTimelineSource *src;
|
|
|
|
|
|
|
|
src = g_object_new (GES_TYPE_CUSTOM_TIMELINE_SOURCE, NULL);
|
|
|
|
src->filltrackobjectfunc = func;
|
2009-08-07 18:31:11 +00:00
|
|
|
src->user_data = user_data;
|
2009-08-07 14:45:16 +00:00
|
|
|
|
|
|
|
return src;
|
|
|
|
}
|