2010-11-05 11:12:24 +00:00
|
|
|
/* GStreamer Editing Services
|
|
|
|
* Copyright (C) 2010 Thibault Saunier <tsaunier@gnome.org>
|
|
|
|
*
|
|
|
|
* 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
|
2012-11-04 00:25:20 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2010-11-05 11:12:24 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2014-04-07 19:02:48 +00:00
|
|
|
* SECTION:gesbaseeffect
|
2013-01-17 03:35:39 +00:00
|
|
|
* @short_description: adds an effect to a stream in a GESSourceClip or a
|
2014-02-26 03:17:36 +00:00
|
|
|
* GESLayer
|
2010-11-05 11:12:24 +00:00
|
|
|
*/
|
|
|
|
|
2011-02-23 19:30:04 +00:00
|
|
|
#include <glib/gprintf.h>
|
|
|
|
|
2013-05-16 06:10:35 +00:00
|
|
|
#include "ges-utils.h"
|
2010-11-05 11:12:24 +00:00
|
|
|
#include "ges-internal.h"
|
2013-01-26 15:31:33 +00:00
|
|
|
#include "ges-track-element.h"
|
2013-01-26 15:35:19 +00:00
|
|
|
#include "ges-base-effect.h"
|
2010-11-05 11:12:24 +00:00
|
|
|
|
2013-01-27 15:27:19 +00:00
|
|
|
G_DEFINE_ABSTRACT_TYPE (GESBaseEffect, ges_base_effect, GES_TYPE_OPERATION);
|
2010-11-05 11:12:24 +00:00
|
|
|
|
2013-01-26 15:35:19 +00:00
|
|
|
struct _GESBaseEffectPrivate
|
2010-11-05 11:12:24 +00:00
|
|
|
{
|
2011-02-10 11:17:50 +00:00
|
|
|
void *nothing;
|
2010-11-05 11:12:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
2013-01-26 15:35:19 +00:00
|
|
|
ges_base_effect_class_init (GESBaseEffectClass * klass)
|
2010-11-05 11:12:24 +00:00
|
|
|
{
|
2013-01-26 15:35:19 +00:00
|
|
|
g_type_class_add_private (klass, sizeof (GESBaseEffectPrivate));
|
2010-11-05 11:12:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-01-26 15:35:19 +00:00
|
|
|
ges_base_effect_init (GESBaseEffect * self)
|
2010-11-05 11:12:24 +00:00
|
|
|
{
|
|
|
|
self->priv =
|
2013-01-26 15:35:19 +00:00
|
|
|
G_TYPE_INSTANCE_GET_PRIVATE (self, GES_TYPE_BASE_EFFECT,
|
|
|
|
GESBaseEffectPrivate);
|
2010-11-05 11:12:24 +00:00
|
|
|
}
|