2010-05-24 11:08:32 +00:00
|
|
|
/* GStreamer Editing Services
|
|
|
|
* Copyright (C) 2010 Brandon Lewis <brandon@collabora.co.uk>
|
|
|
|
* 2010 Nokia Corporation
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2010-05-31 16:59:12 +00:00
|
|
|
/**
|
|
|
|
* SECTION:ges-track-transition
|
|
|
|
* @short_description: Concrete, track-level implemenation of audio and video
|
|
|
|
* transitinos.
|
|
|
|
*/
|
|
|
|
|
2010-05-24 11:08:32 +00:00
|
|
|
#include "ges-internal.h"
|
|
|
|
#include "ges-track-object.h"
|
|
|
|
#include "ges-track-transition.h"
|
2010-06-03 17:02:58 +00:00
|
|
|
#include "ges-timeline-transition.h"
|
2010-05-24 11:08:32 +00:00
|
|
|
|
|
|
|
G_DEFINE_TYPE (GESTrackTransition, ges_track_transition, GES_TYPE_TRACK_OBJECT);
|
|
|
|
|
2010-06-18 10:55:30 +00:00
|
|
|
GstElement *ges_track_transition_create_element (GESTrackTransition * self,
|
|
|
|
GESTrack * track);
|
|
|
|
|
2010-05-25 17:07:21 +00:00
|
|
|
static void
|
2010-05-28 01:02:49 +00:00
|
|
|
ges_track_transition_update_vcontroller (GESTrackTransition * self,
|
2010-05-25 17:07:21 +00:00
|
|
|
GstElement * gnlobj)
|
|
|
|
{
|
2010-06-09 14:27:43 +00:00
|
|
|
GValue start_value = { 0, };
|
|
|
|
GValue end_value = { 0, };
|
|
|
|
guint64 duration;
|
|
|
|
|
2010-05-25 17:07:21 +00:00
|
|
|
GST_LOG ("updating controller");
|
|
|
|
|
|
|
|
if (!gnlobj)
|
|
|
|
return;
|
|
|
|
|
2010-05-28 01:02:49 +00:00
|
|
|
if (!(self->vcontroller))
|
2010-05-25 17:07:21 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
GST_LOG ("getting properties");
|
|
|
|
g_object_get (G_OBJECT (gnlobj), "duration", (guint64 *) & duration, NULL);
|
|
|
|
|
|
|
|
GST_INFO ("duration: %d\n", duration);
|
|
|
|
g_value_init (&start_value, G_TYPE_DOUBLE);
|
|
|
|
g_value_init (&end_value, G_TYPE_DOUBLE);
|
2010-05-28 01:02:49 +00:00
|
|
|
g_value_set_double (&start_value, self->vstart_value);
|
|
|
|
g_value_set_double (&end_value, self->vend_value);
|
2010-05-25 17:07:21 +00:00
|
|
|
|
|
|
|
GST_LOG ("setting values on controller");
|
|
|
|
|
2010-05-28 01:02:49 +00:00
|
|
|
g_assert (GST_IS_CONTROLLER (self->vcontroller));
|
|
|
|
g_assert (GST_IS_CONTROL_SOURCE (self->vcontrol_source));
|
2010-05-25 17:07:21 +00:00
|
|
|
|
2010-05-28 01:02:49 +00:00
|
|
|
gst_interpolation_control_source_unset_all (self->vcontrol_source);
|
|
|
|
gst_interpolation_control_source_set (self->vcontrol_source, 0, &start_value);
|
|
|
|
gst_interpolation_control_source_set (self->vcontrol_source,
|
2010-05-25 17:07:21 +00:00
|
|
|
duration, &end_value);
|
|
|
|
|
|
|
|
GST_LOG ("done updating controller");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gnlobject_duration_cb (GstElement * gnlobject, GParamSpec * arg
|
|
|
|
G_GNUC_UNUSED, GESTrackTransition * self)
|
|
|
|
{
|
2010-06-18 11:42:47 +00:00
|
|
|
GESTrackTransitionClass *klass;
|
|
|
|
|
|
|
|
klass = GES_TRACK_TRANSITION_GET_CLASS (self);
|
2010-05-31 13:40:52 +00:00
|
|
|
GST_LOG ("got duration changed signal");
|
|
|
|
|
2010-06-18 11:42:47 +00:00
|
|
|
klass = GES_TRACK_TRANSITION_GET_CLASS (self);
|
|
|
|
klass->duration_changed (self, gnlobject);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ges_track_transition_duration_changed (GESTrackTransition * self, GstElement
|
|
|
|
* gnlobject)
|
|
|
|
{
|
|
|
|
GESTrackType type;
|
|
|
|
type = ((GESTrackObject *) self)->track->type;
|
|
|
|
|
2010-06-18 13:04:50 +00:00
|
|
|
if (type == GES_TRACK_TYPE_VIDEO) {
|
2010-05-31 13:40:52 +00:00
|
|
|
ges_track_transition_update_vcontroller (self, gnlobject);
|
|
|
|
}
|
2010-05-25 17:07:21 +00:00
|
|
|
}
|
|
|
|
|
2010-05-24 11:08:32 +00:00
|
|
|
static void
|
|
|
|
ges_track_transition_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_transition_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_transition_dispose (GObject * object)
|
|
|
|
{
|
2010-05-25 14:41:53 +00:00
|
|
|
GESTrackTransition *self = GES_TRACK_TRANSITION (object);
|
2010-06-09 11:53:07 +00:00
|
|
|
|
|
|
|
GST_DEBUG ("disposing");
|
2010-06-10 14:19:11 +00:00
|
|
|
GST_LOG ("mixer: %p smpte: %p sinka: %p sinkb: %p",
|
|
|
|
self->vmixer, self->vsmpte, self->sinka, self->sinkb);
|
2010-06-09 11:53:07 +00:00
|
|
|
|
2010-05-28 01:02:49 +00:00
|
|
|
if (self->vcontroller) {
|
|
|
|
g_object_unref (self->vcontroller);
|
|
|
|
self->vcontroller = NULL;
|
2010-06-08 16:37:01 +00:00
|
|
|
if (self->vcontrol_source)
|
|
|
|
gst_object_unref (self->vcontrol_source);
|
2010-05-28 01:02:49 +00:00
|
|
|
self->vcontrol_source = NULL;
|
2010-05-25 14:41:53 +00:00
|
|
|
}
|
|
|
|
|
2010-05-31 13:38:14 +00:00
|
|
|
if (self->a_acontroller) {
|
|
|
|
g_object_unref (self->a_acontroller);
|
|
|
|
self->a_acontroller = NULL;
|
2010-06-08 16:37:01 +00:00
|
|
|
if (self->a_acontrol_source)
|
|
|
|
gst_object_unref (self->a_acontrol_source);
|
2010-05-31 13:38:14 +00:00
|
|
|
self->a_acontrol_source = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self->a_bcontroller) {
|
2010-06-09 09:21:26 +00:00
|
|
|
g_object_unref (self->a_bcontroller);
|
2010-05-31 13:38:14 +00:00
|
|
|
self->a_bcontroller = NULL;
|
2010-06-08 16:37:01 +00:00
|
|
|
if (self->a_bcontrol_source)
|
|
|
|
gst_object_unref (self->a_bcontrol_source);
|
2010-05-31 13:38:14 +00:00
|
|
|
self->a_bcontrol_source = NULL;
|
|
|
|
}
|
|
|
|
|
2010-06-14 17:40:50 +00:00
|
|
|
if (self->vmixer && self->sinka && self->sinkb) {
|
2010-06-10 14:19:11 +00:00
|
|
|
GST_DEBUG ("releasing request pads for vmixer");
|
|
|
|
gst_element_release_request_pad (self->vmixer, self->sinka);
|
|
|
|
gst_element_release_request_pad (self->vmixer, self->sinkb);
|
2010-06-14 17:40:50 +00:00
|
|
|
gst_object_unref (self->vmixer);
|
|
|
|
gst_object_unref (self->sinka);
|
|
|
|
gst_object_unref (self->sinkb);
|
2010-06-10 14:19:11 +00:00
|
|
|
self->vmixer = NULL;
|
|
|
|
self->sinka = NULL;
|
|
|
|
self->sinkb = NULL;
|
|
|
|
}
|
2010-06-02 16:55:52 +00:00
|
|
|
|
2010-05-24 11:08:32 +00:00
|
|
|
G_OBJECT_CLASS (ges_track_transition_parent_class)->dispose (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ges_track_transition_finalize (GObject * object)
|
|
|
|
{
|
2010-05-31 13:38:14 +00:00
|
|
|
G_OBJECT_CLASS (ges_track_transition_parent_class)->finalize (object);
|
2010-05-24 11:08:32 +00:00
|
|
|
}
|
|
|
|
|
2010-05-28 01:02:49 +00:00
|
|
|
static GObject *
|
2010-05-25 11:44:57 +00:00
|
|
|
link_element_to_mixer (GstElement * element, GstElement * mixer)
|
|
|
|
{
|
|
|
|
GstPad *sinkpad = gst_element_get_request_pad (mixer, "sink_%d");
|
|
|
|
GstPad *srcpad = gst_element_get_static_pad (element, "src");
|
|
|
|
|
|
|
|
g_assert (sinkpad);
|
|
|
|
g_assert (srcpad);
|
|
|
|
|
|
|
|
gst_pad_link (srcpad, sinkpad);
|
2010-06-14 17:40:50 +00:00
|
|
|
gst_object_unref (srcpad);
|
2010-05-25 11:44:57 +00:00
|
|
|
|
2010-05-26 14:36:24 +00:00
|
|
|
return G_OBJECT (sinkpad);
|
|
|
|
}
|
|
|
|
|
2010-05-28 01:02:49 +00:00
|
|
|
static GObject *
|
2010-05-26 14:36:24 +00:00
|
|
|
link_element_to_mixer_with_smpte (GstBin * bin, GstElement * element,
|
2010-06-02 16:55:52 +00:00
|
|
|
GstElement * mixer, gint type, GstElement ** smpteref)
|
2010-05-26 14:36:24 +00:00
|
|
|
{
|
|
|
|
GstElement *smptealpha = gst_element_factory_make ("smptealpha", NULL);
|
|
|
|
g_object_set (G_OBJECT (smptealpha),
|
2010-06-02 13:18:55 +00:00
|
|
|
"type", (gint) type, "invert", (gboolean) TRUE, NULL);
|
2010-05-26 14:36:24 +00:00
|
|
|
gst_bin_add (bin, smptealpha);
|
|
|
|
|
|
|
|
gst_element_link_many (element, smptealpha, mixer, NULL);
|
|
|
|
|
2010-06-02 16:55:52 +00:00
|
|
|
/* crack */
|
|
|
|
if (smpteref) {
|
|
|
|
*smpteref = smptealpha;
|
|
|
|
}
|
|
|
|
|
2010-05-26 14:36:24 +00:00
|
|
|
return G_OBJECT (smptealpha);
|
2010-05-25 11:44:57 +00:00
|
|
|
}
|
|
|
|
|
2010-05-28 00:31:42 +00:00
|
|
|
static GstElement *
|
|
|
|
create_video_bin (GESTrackTransition * self)
|
|
|
|
{
|
2010-06-09 14:27:43 +00:00
|
|
|
GstElement *topbin, *iconva, *iconvb, *oconv;
|
|
|
|
GObject *target = NULL;
|
|
|
|
const gchar *propname = NULL;
|
|
|
|
GstElement *mixer = NULL;
|
|
|
|
GstPad *sinka_target, *sinkb_target, *src_target, *sinka, *sinkb, *src;
|
|
|
|
GstController *controller;
|
|
|
|
GstInterpolationControlSource *control_source;
|
|
|
|
|
2010-05-31 13:40:52 +00:00
|
|
|
GST_LOG ("creating a video bin");
|
|
|
|
|
2010-06-09 14:27:43 +00:00
|
|
|
topbin = gst_bin_new ("transition-bin");
|
|
|
|
iconva = gst_element_factory_make ("ffmpegcolorspace", "tr-csp-a");
|
|
|
|
iconvb = gst_element_factory_make ("ffmpegcolorspace", "tr-csp-b");
|
|
|
|
oconv = gst_element_factory_make ("ffmpegcolorspace", "tr-csp-output");
|
2010-05-28 00:31:42 +00:00
|
|
|
|
|
|
|
gst_bin_add_many (GST_BIN (topbin), iconva, iconvb, oconv, NULL);
|
|
|
|
mixer = gst_element_factory_make ("videomixer", NULL);
|
|
|
|
g_object_set (G_OBJECT (mixer), "background", 1, NULL);
|
|
|
|
gst_bin_add (GST_BIN (topbin), mixer);
|
|
|
|
|
2010-06-03 17:02:58 +00:00
|
|
|
if (self->vtype != VTYPE_CROSSFADE) {
|
2010-05-28 00:31:42 +00:00
|
|
|
link_element_to_mixer_with_smpte (GST_BIN (topbin), iconva, mixer,
|
2010-06-02 16:55:52 +00:00
|
|
|
self->vtype, NULL);
|
2010-05-28 00:31:42 +00:00
|
|
|
target = link_element_to_mixer_with_smpte (GST_BIN (topbin), iconvb,
|
2010-06-02 16:55:52 +00:00
|
|
|
mixer, self->vtype, &self->vsmpte);
|
2010-05-28 00:31:42 +00:00
|
|
|
propname = "position";
|
2010-05-28 01:02:49 +00:00
|
|
|
self->vstart_value = 1.0;
|
|
|
|
self->vend_value = 0.0;
|
2010-05-28 00:31:42 +00:00
|
|
|
} else {
|
2010-06-10 14:19:11 +00:00
|
|
|
self->sinka = (GstPad *) link_element_to_mixer (iconva, mixer);
|
|
|
|
self->sinkb = (GstPad *) link_element_to_mixer (iconvb, mixer);
|
|
|
|
target = (GObject *) self->sinkb;
|
2010-06-14 17:40:50 +00:00
|
|
|
self->vmixer = gst_object_ref (mixer);
|
2010-05-28 00:31:42 +00:00
|
|
|
propname = "alpha";
|
2010-05-28 01:02:49 +00:00
|
|
|
self->vstart_value = 0.0;
|
|
|
|
self->vend_value = 1.0;
|
2010-05-28 00:31:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gst_element_link (mixer, oconv);
|
|
|
|
|
2010-06-09 14:27:43 +00:00
|
|
|
sinka_target = gst_element_get_static_pad (iconva, "sink");
|
|
|
|
sinkb_target = gst_element_get_static_pad (iconvb, "sink");
|
|
|
|
src_target = gst_element_get_static_pad (oconv, "src");
|
2010-05-28 00:31:42 +00:00
|
|
|
|
2010-06-09 14:27:43 +00:00
|
|
|
sinka = gst_ghost_pad_new ("sinka", sinka_target);
|
|
|
|
sinkb = gst_ghost_pad_new ("sinkb", sinkb_target);
|
|
|
|
src = gst_ghost_pad_new ("src", src_target);
|
2010-05-28 00:31:42 +00:00
|
|
|
|
|
|
|
gst_element_add_pad (topbin, src);
|
|
|
|
gst_element_add_pad (topbin, sinka);
|
|
|
|
gst_element_add_pad (topbin, sinkb);
|
|
|
|
|
2010-06-14 17:40:50 +00:00
|
|
|
gst_object_unref (sinka_target);
|
|
|
|
gst_object_unref (sinkb_target);
|
|
|
|
gst_object_unref (src_target);
|
|
|
|
|
2010-05-28 00:31:42 +00:00
|
|
|
/* set up interpolation */
|
|
|
|
|
|
|
|
g_object_set (target, propname, (gfloat) 0.0, NULL);
|
|
|
|
|
|
|
|
controller = gst_object_control_properties (target, propname, NULL);
|
2010-06-09 14:27:43 +00:00
|
|
|
|
2010-05-28 00:31:42 +00:00
|
|
|
control_source = gst_interpolation_control_source_new ();
|
|
|
|
gst_controller_set_control_source (controller,
|
|
|
|
propname, GST_CONTROL_SOURCE (control_source));
|
|
|
|
gst_interpolation_control_source_set_interpolation_mode (control_source,
|
|
|
|
GST_INTERPOLATE_LINEAR);
|
|
|
|
|
2010-05-28 01:02:49 +00:00
|
|
|
self->vcontroller = controller;
|
|
|
|
self->vcontrol_source = control_source;
|
2010-05-28 00:31:42 +00:00
|
|
|
|
|
|
|
return topbin;
|
|
|
|
}
|
|
|
|
|
2010-05-24 11:08:32 +00:00
|
|
|
static gboolean
|
|
|
|
ges_track_transition_create_gnl_object (GESTrackObject * object)
|
|
|
|
{
|
2010-06-18 10:55:30 +00:00
|
|
|
GESTrackTransition *self;
|
|
|
|
GESTrackTransitionClass *klass;
|
|
|
|
GstElement *element;
|
|
|
|
gchar *name;
|
2010-05-27 22:12:45 +00:00
|
|
|
static gint tnum = 0;
|
|
|
|
|
2010-06-18 10:55:30 +00:00
|
|
|
self = GES_TRACK_TRANSITION (object);
|
|
|
|
klass = GES_TRACK_TRANSITION_GET_CLASS (object);
|
|
|
|
|
|
|
|
name = g_strdup_printf ("transition-operation%d", tnum++);
|
2010-05-27 22:12:45 +00:00
|
|
|
object->gnlobject = gst_element_factory_make ("gnloperation", name);
|
|
|
|
g_free (name);
|
|
|
|
|
2010-05-25 11:44:57 +00:00
|
|
|
g_object_set (object->gnlobject, "priority", 0, NULL);
|
2010-05-25 17:07:21 +00:00
|
|
|
g_signal_connect (G_OBJECT (object->gnlobject), "notify::duration",
|
|
|
|
G_CALLBACK (gnlobject_duration_cb), object);
|
2010-05-25 11:44:57 +00:00
|
|
|
|
2010-06-18 10:55:30 +00:00
|
|
|
element = klass->create_element (self, object->track);
|
|
|
|
if (!GST_IS_ELEMENT (element))
|
|
|
|
return FALSE;
|
2010-05-25 11:44:57 +00:00
|
|
|
|
2010-06-18 10:55:30 +00:00
|
|
|
gst_bin_add (GST_BIN (object->gnlobject), element);
|
2010-06-18 11:42:47 +00:00
|
|
|
|
|
|
|
klass->duration_changed (self, object->gnlobject);
|
2010-06-18 10:55:30 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GstElement *
|
|
|
|
ges_track_transition_create_element (GESTrackTransition * self,
|
|
|
|
GESTrack * track)
|
|
|
|
{
|
|
|
|
if ((track->type) == GES_TRACK_TYPE_VIDEO) {
|
|
|
|
return create_video_bin (self);
|
2010-05-31 13:40:52 +00:00
|
|
|
}
|
|
|
|
|
2010-06-18 10:55:30 +00:00
|
|
|
return gst_element_factory_make ("identity", "invalid-track-type");
|
2010-05-31 13:40:52 +00:00
|
|
|
}
|
2010-05-28 00:31:42 +00:00
|
|
|
|
2010-05-24 11:08:32 +00:00
|
|
|
static void
|
|
|
|
ges_track_transition_class_init (GESTrackTransitionClass * klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
GESTrackObjectClass *track_class = GES_TRACK_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
object_class->get_property = ges_track_transition_get_property;
|
|
|
|
object_class->set_property = ges_track_transition_set_property;
|
|
|
|
object_class->dispose = ges_track_transition_dispose;
|
|
|
|
object_class->finalize = ges_track_transition_finalize;
|
|
|
|
|
|
|
|
track_class->create_gnl_object = ges_track_transition_create_gnl_object;
|
2010-06-18 10:55:30 +00:00
|
|
|
klass->create_element = ges_track_transition_create_element;
|
2010-06-18 11:42:47 +00:00
|
|
|
klass->duration_changed = ges_track_transition_duration_changed;
|
2010-05-24 11:08:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ges_track_transition_init (GESTrackTransition * self)
|
|
|
|
{
|
2010-05-28 01:02:49 +00:00
|
|
|
self->vcontroller = NULL;
|
|
|
|
self->vcontrol_source = NULL;
|
2010-06-02 16:55:52 +00:00
|
|
|
self->vsmpte = NULL;
|
2010-06-10 14:19:11 +00:00
|
|
|
self->vmixer = NULL;
|
|
|
|
self->sinka = NULL;
|
|
|
|
self->sinkb = NULL;
|
2010-06-02 13:18:55 +00:00
|
|
|
self->vtype = 0;
|
2010-05-28 01:02:49 +00:00
|
|
|
self->vstart_value = 0.0;
|
|
|
|
self->vend_value = 0.0;
|
|
|
|
|
2010-05-31 13:38:14 +00:00
|
|
|
self->a_acontroller = NULL;
|
|
|
|
self->a_acontrol_source = NULL;
|
|
|
|
|
|
|
|
self->a_bcontroller = NULL;
|
|
|
|
self->a_bcontrol_source = NULL;
|
2010-05-24 11:08:32 +00:00
|
|
|
}
|
|
|
|
|
2010-06-09 14:27:43 +00:00
|
|
|
void
|
2010-06-02 16:55:52 +00:00
|
|
|
ges_track_transition_set_vtype (GESTrackTransition * self, gint vtype)
|
|
|
|
{
|
2010-06-09 14:27:43 +00:00
|
|
|
if (((vtype == VTYPE_CROSSFADE) && (self->vtype != VTYPE_CROSSFADE)) ||
|
|
|
|
((vtype != VTYPE_CROSSFADE) && (self->vtype = VTYPE_CROSSFADE))) {
|
2010-06-02 16:55:52 +00:00
|
|
|
GST_WARNING
|
|
|
|
("Changing between 'crossfade' and other types is not supported\n");
|
|
|
|
}
|
2010-06-03 17:02:58 +00:00
|
|
|
|
2010-06-02 16:55:52 +00:00
|
|
|
self->vtype = vtype;
|
2010-06-03 17:02:58 +00:00
|
|
|
if (self->vsmpte && (vtype != VTYPE_CROSSFADE))
|
2010-06-02 16:55:52 +00:00
|
|
|
g_object_set (self->vsmpte, "type", (gint) vtype, NULL);
|
|
|
|
}
|
|
|
|
|
2010-05-24 11:08:32 +00:00
|
|
|
GESTrackTransition *
|
2010-06-02 14:27:58 +00:00
|
|
|
ges_track_transition_new (gint value)
|
2010-05-24 11:08:32 +00:00
|
|
|
{
|
2010-05-26 14:36:24 +00:00
|
|
|
GESTrackTransition *ret = g_object_new (GES_TYPE_TRACK_TRANSITION, NULL);
|
2010-06-02 14:27:58 +00:00
|
|
|
ret->vtype = value;
|
2010-05-26 14:36:24 +00:00
|
|
|
|
|
|
|
return ret;
|
2010-05-24 11:08:32 +00:00
|
|
|
}
|