2010-06-18 09:09:28 +00:00
|
|
|
/* GStreamer Editing Services
|
|
|
|
* Copyright (C) 2010 Brandon Lewis <brandon.lewis@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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:ges-track-audio-transition
|
2010-07-01 14:48:45 +00:00
|
|
|
* @short_description: implements audio crossfade transition
|
2010-06-18 09:09:28 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ges-internal.h"
|
|
|
|
#include "ges-track-object.h"
|
|
|
|
#include "ges-track-audio-transition.h"
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (GESTrackAudioTransition, ges_track_audio_transition,
|
|
|
|
GES_TYPE_TRACK_TRANSITION);
|
|
|
|
|
2010-12-04 18:54:13 +00:00
|
|
|
struct _GESTrackAudioTransitionPrivate
|
|
|
|
{
|
2011-01-06 15:35:20 +00:00
|
|
|
/* these enable volume interpolation. Unlike video, both inputs are adjusted
|
|
|
|
* simultaneously */
|
|
|
|
GstController *a_controller;
|
|
|
|
GstInterpolationControlSource *a_control_source;
|
|
|
|
|
|
|
|
GstController *b_controller;
|
|
|
|
GstInterpolationControlSource *b_control_source;
|
|
|
|
|
2010-12-04 18:54:13 +00:00
|
|
|
};
|
|
|
|
|
2010-06-18 09:09:28 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
};
|
|
|
|
|
2010-06-18 13:04:50 +00:00
|
|
|
|
2010-07-14 11:29:23 +00:00
|
|
|
#define fast_element_link(a,b) gst_element_link_pads_full((a),"src",(b),"sink",GST_PAD_LINK_CHECK_NOTHING)
|
|
|
|
|
2010-06-18 13:04:50 +00:00
|
|
|
static void
|
2010-07-08 11:20:56 +00:00
|
|
|
ges_track_audio_transition_duration_changed (GESTrackObject * self, guint64);
|
2010-06-18 13:04:50 +00:00
|
|
|
|
2010-12-10 11:15:54 +00:00
|
|
|
static GstElement *ges_track_audio_transition_create_element (GESTrackObject
|
2010-06-18 14:36:54 +00:00
|
|
|
* self);
|
2010-06-18 13:04:50 +00:00
|
|
|
|
2010-06-18 09:09:28 +00:00
|
|
|
static void ges_track_audio_transition_dispose (GObject * object);
|
|
|
|
|
|
|
|
static void ges_track_audio_transition_finalize (GObject * object);
|
|
|
|
|
|
|
|
static void ges_track_audio_transition_get_property (GObject * object, guint
|
|
|
|
property_id, GValue * value, GParamSpec * pspec);
|
|
|
|
|
|
|
|
static void ges_track_audio_transition_set_property (GObject * object, guint
|
|
|
|
property_id, const GValue * value, GParamSpec * pspec);
|
|
|
|
|
|
|
|
static void
|
|
|
|
ges_track_audio_transition_class_init (GESTrackAudioTransitionClass * klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class;
|
2010-07-08 11:20:56 +00:00
|
|
|
GESTrackObjectClass *toclass;
|
2010-06-18 09:09:28 +00:00
|
|
|
|
2010-12-04 18:54:13 +00:00
|
|
|
g_type_class_add_private (klass, sizeof (GESTrackAudioTransitionPrivate));
|
|
|
|
|
2010-06-18 09:09:28 +00:00
|
|
|
object_class = G_OBJECT_CLASS (klass);
|
2010-07-08 11:20:56 +00:00
|
|
|
toclass = GES_TRACK_OBJECT_CLASS (klass);
|
2010-06-18 09:09:28 +00:00
|
|
|
|
|
|
|
object_class->get_property = ges_track_audio_transition_get_property;
|
|
|
|
object_class->set_property = ges_track_audio_transition_set_property;
|
|
|
|
object_class->dispose = ges_track_audio_transition_dispose;
|
|
|
|
object_class->finalize = ges_track_audio_transition_finalize;
|
|
|
|
|
2010-07-08 11:20:56 +00:00
|
|
|
toclass->duration_changed = ges_track_audio_transition_duration_changed;
|
|
|
|
|
2010-12-10 11:15:54 +00:00
|
|
|
toclass->create_element = ges_track_audio_transition_create_element;
|
2010-06-18 13:04:50 +00:00
|
|
|
|
2010-06-18 09:09:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ges_track_audio_transition_init (GESTrackAudioTransition * self)
|
|
|
|
{
|
2010-12-04 18:54:13 +00:00
|
|
|
|
|
|
|
self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
|
|
|
|
GES_TYPE_TRACK_AUDIO_TRANSITION, GESTrackAudioTransitionPrivate);
|
|
|
|
|
2011-01-06 15:35:20 +00:00
|
|
|
self->priv->a_controller = NULL;
|
|
|
|
self->priv->a_control_source = NULL;
|
2010-06-18 13:21:02 +00:00
|
|
|
|
2011-01-06 15:35:20 +00:00
|
|
|
self->priv->b_controller = NULL;
|
|
|
|
self->priv->b_control_source = NULL;
|
2010-06-18 09:09:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ges_track_audio_transition_dispose (GObject * object)
|
|
|
|
{
|
2010-06-18 13:21:02 +00:00
|
|
|
GESTrackAudioTransition *self;
|
|
|
|
|
|
|
|
self = GES_TRACK_AUDIO_TRANSITION (object);
|
|
|
|
|
2011-01-06 15:35:20 +00:00
|
|
|
if (self->priv->a_controller) {
|
|
|
|
g_object_unref (self->priv->a_controller);
|
|
|
|
self->priv->a_controller = NULL;
|
|
|
|
if (self->priv->a_control_source)
|
|
|
|
gst_object_unref (self->priv->a_control_source);
|
|
|
|
self->priv->a_control_source = NULL;
|
2010-06-18 13:21:02 +00:00
|
|
|
}
|
|
|
|
|
2011-01-06 15:35:20 +00:00
|
|
|
if (self->priv->b_controller) {
|
|
|
|
g_object_unref (self->priv->b_controller);
|
|
|
|
self->priv->b_controller = NULL;
|
|
|
|
if (self->priv->b_control_source)
|
|
|
|
gst_object_unref (self->priv->b_control_source);
|
|
|
|
self->priv->b_control_source = NULL;
|
2010-06-18 13:21:02 +00:00
|
|
|
}
|
|
|
|
|
2010-06-18 09:09:28 +00:00
|
|
|
G_OBJECT_CLASS (ges_track_audio_transition_parent_class)->dispose (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ges_track_audio_transition_finalize (GObject * object)
|
|
|
|
{
|
|
|
|
G_OBJECT_CLASS (ges_track_audio_transition_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ges_track_audio_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_audio_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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-18 13:04:50 +00:00
|
|
|
static GObject *
|
|
|
|
link_element_to_mixer_with_volume (GstBin * bin, GstElement * element,
|
|
|
|
GstElement * mixer)
|
|
|
|
{
|
|
|
|
GstElement *volume = gst_element_factory_make ("volume", NULL);
|
|
|
|
gst_bin_add (bin, volume);
|
|
|
|
|
2010-07-14 11:29:23 +00:00
|
|
|
if (!fast_element_link (element, volume) ||
|
|
|
|
!gst_element_link_pads_full (volume, "src", mixer, "sink%d",
|
|
|
|
GST_PAD_LINK_CHECK_NOTHING))
|
|
|
|
GST_ERROR_OBJECT (bin, "Error linking volume to mixer");
|
2010-06-18 13:04:50 +00:00
|
|
|
|
|
|
|
return G_OBJECT (volume);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstElement *
|
2010-12-10 11:15:54 +00:00
|
|
|
ges_track_audio_transition_create_element (GESTrackObject * object)
|
2010-06-18 13:04:50 +00:00
|
|
|
{
|
2010-06-18 13:21:02 +00:00
|
|
|
GESTrackAudioTransition *self;
|
2010-06-18 13:04:50 +00:00
|
|
|
GstElement *topbin, *iconva, *iconvb, *oconv;
|
|
|
|
GObject *atarget, *btarget = NULL;
|
|
|
|
const gchar *propname = "volume";
|
|
|
|
GstElement *mixer = NULL;
|
|
|
|
GstPad *sinka_target, *sinkb_target, *src_target, *sinka, *sinkb, *src;
|
|
|
|
GstController *acontroller, *bcontroller;
|
|
|
|
GstInterpolationControlSource *acontrol_source, *bcontrol_source;
|
|
|
|
|
2010-06-18 13:21:02 +00:00
|
|
|
self = GES_TRACK_AUDIO_TRANSITION (object);
|
|
|
|
|
2010-06-18 13:04:50 +00:00
|
|
|
|
|
|
|
GST_LOG ("creating an audio bin");
|
|
|
|
|
|
|
|
topbin = gst_bin_new ("transition-bin");
|
|
|
|
iconva = gst_element_factory_make ("audioconvert", "tr-aconv-a");
|
|
|
|
iconvb = gst_element_factory_make ("audioconvert", "tr-aconv-b");
|
|
|
|
oconv = gst_element_factory_make ("audioconvert", "tr-aconv-output");
|
|
|
|
|
|
|
|
gst_bin_add_many (GST_BIN (topbin), iconva, iconvb, oconv, NULL);
|
|
|
|
|
|
|
|
mixer = gst_element_factory_make ("adder", NULL);
|
|
|
|
gst_bin_add (GST_BIN (topbin), mixer);
|
|
|
|
|
|
|
|
atarget = link_element_to_mixer_with_volume (GST_BIN (topbin), iconva, mixer);
|
|
|
|
btarget = link_element_to_mixer_with_volume (GST_BIN (topbin), iconvb, mixer);
|
|
|
|
|
|
|
|
g_assert (atarget && btarget);
|
|
|
|
|
2010-07-14 11:29:23 +00:00
|
|
|
fast_element_link (mixer, oconv);
|
2010-06-18 13:04:50 +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");
|
|
|
|
|
|
|
|
sinka = gst_ghost_pad_new ("sinka", sinka_target);
|
|
|
|
sinkb = gst_ghost_pad_new ("sinkb", sinkb_target);
|
|
|
|
src = gst_ghost_pad_new ("src", src_target);
|
|
|
|
|
|
|
|
gst_element_add_pad (topbin, src);
|
|
|
|
gst_element_add_pad (topbin, sinka);
|
|
|
|
gst_element_add_pad (topbin, sinkb);
|
|
|
|
|
|
|
|
/* set up interpolation */
|
|
|
|
|
|
|
|
gst_object_unref (sinka_target);
|
|
|
|
gst_object_unref (sinkb_target);
|
|
|
|
gst_object_unref (src_target);
|
|
|
|
|
|
|
|
|
|
|
|
//g_object_set(atarget, propname, (gdouble) 0, NULL);
|
|
|
|
//g_object_set(btarget, propname, (gdouble) 0, NULL);
|
|
|
|
|
|
|
|
acontroller = gst_object_control_properties (atarget, propname, NULL);
|
|
|
|
bcontroller = gst_object_control_properties (btarget, propname, NULL);
|
|
|
|
|
|
|
|
g_assert (acontroller && bcontroller);
|
|
|
|
|
|
|
|
acontrol_source = gst_interpolation_control_source_new ();
|
|
|
|
gst_controller_set_control_source (acontroller,
|
|
|
|
propname, GST_CONTROL_SOURCE (acontrol_source));
|
|
|
|
gst_interpolation_control_source_set_interpolation_mode (acontrol_source,
|
|
|
|
GST_INTERPOLATE_LINEAR);
|
|
|
|
|
|
|
|
bcontrol_source = gst_interpolation_control_source_new ();
|
|
|
|
gst_controller_set_control_source (bcontroller,
|
|
|
|
propname, GST_CONTROL_SOURCE (bcontrol_source));
|
|
|
|
gst_interpolation_control_source_set_interpolation_mode (bcontrol_source,
|
|
|
|
GST_INTERPOLATE_LINEAR);
|
|
|
|
|
2011-01-06 15:35:20 +00:00
|
|
|
self->priv->a_controller = acontroller;
|
|
|
|
self->priv->b_controller = bcontroller;
|
|
|
|
self->priv->a_control_source = acontrol_source;
|
|
|
|
self->priv->b_control_source = bcontrol_source;
|
2010-06-18 13:04:50 +00:00
|
|
|
|
|
|
|
return topbin;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-07-08 11:20:56 +00:00
|
|
|
ges_track_audio_transition_duration_changed (GESTrackObject * object,
|
|
|
|
guint64 duration)
|
2010-06-18 13:04:50 +00:00
|
|
|
{
|
2010-06-18 13:21:02 +00:00
|
|
|
GESTrackAudioTransition *self;
|
2010-12-16 14:00:46 +00:00
|
|
|
GstElement *gnlobj = ges_track_object_get_gnlobject (object);
|
2010-07-08 11:20:56 +00:00
|
|
|
|
2010-06-18 13:04:50 +00:00
|
|
|
GValue zero = { 0, };
|
|
|
|
GValue one = { 0, };
|
|
|
|
|
2010-06-18 13:21:02 +00:00
|
|
|
self = GES_TRACK_AUDIO_TRANSITION (object);
|
|
|
|
|
2010-06-18 13:04:50 +00:00
|
|
|
GST_LOG ("updating controller: gnlobj (%p) acontroller(%p) bcontroller(%p)",
|
2011-01-06 15:35:20 +00:00
|
|
|
gnlobj, self->priv->a_controller, self->priv->b_controller);
|
2010-06-18 13:04:50 +00:00
|
|
|
|
2011-01-06 15:35:20 +00:00
|
|
|
if (G_UNLIKELY ((!gnlobj || !self->priv->a_control_source ||
|
|
|
|
!self->priv->b_control_source)))
|
2010-12-21 14:24:26 +00:00
|
|
|
return;
|
2010-06-18 13:04:50 +00:00
|
|
|
|
2010-07-06 17:06:24 +00:00
|
|
|
GST_INFO ("duration: %" G_GUINT64_FORMAT, duration);
|
2010-06-18 13:04:50 +00:00
|
|
|
g_value_init (&zero, G_TYPE_DOUBLE);
|
|
|
|
g_value_init (&one, G_TYPE_DOUBLE);
|
|
|
|
g_value_set_double (&zero, 0.0);
|
|
|
|
g_value_set_double (&one, 1.0);
|
|
|
|
|
|
|
|
GST_LOG ("setting values on controller");
|
|
|
|
|
2011-01-06 15:35:20 +00:00
|
|
|
gst_interpolation_control_source_unset_all (self->priv->a_control_source);
|
|
|
|
gst_interpolation_control_source_set (self->priv->a_control_source, 0, &one);
|
|
|
|
gst_interpolation_control_source_set (self->priv->a_control_source,
|
2010-06-18 13:04:50 +00:00
|
|
|
duration, &zero);
|
|
|
|
|
2011-01-06 15:35:20 +00:00
|
|
|
gst_interpolation_control_source_unset_all (self->priv->b_control_source);
|
|
|
|
gst_interpolation_control_source_set (self->priv->b_control_source, 0, &zero);
|
|
|
|
gst_interpolation_control_source_set (self->priv->b_control_source, duration,
|
|
|
|
&one);
|
2010-06-18 13:04:50 +00:00
|
|
|
|
|
|
|
GST_LOG ("done updating controller");
|
|
|
|
}
|
|
|
|
|
2011-01-10 13:28:35 +00:00
|
|
|
/**
|
|
|
|
* ges_track_audio_transition_new:
|
|
|
|
*
|
|
|
|
* Creates a new #GESTrackAudioTransition.
|
|
|
|
*
|
|
|
|
* Returns: The newly created #GESTrackAudioTransition.
|
|
|
|
*/
|
2010-06-18 09:09:28 +00:00
|
|
|
GESTrackAudioTransition *
|
|
|
|
ges_track_audio_transition_new (void)
|
|
|
|
{
|
|
|
|
return g_object_new (GES_TYPE_TRACK_AUDIO_TRANSITION, NULL);
|
|
|
|
}
|