gstreamer/ges/ges-base-effect.h

59 lines
1.5 KiB
C
Raw Normal View History

/* GStreamer Editing Services
2011-01-21 10:11:12 +00:00
* Copyright (C) 2010 Thibault Saunier <thibault.saunier@collabora.co.uk>
*
* 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.
*/
2020-03-17 21:13:51 +00:00
#pragma once
#include <glib-object.h>
#include <ges/ges-types.h>
#include <ges/ges-operation.h>
G_BEGIN_DECLS
2013-01-26 15:35:19 +00:00
#define GES_TYPE_BASE_EFFECT ges_base_effect_get_type()
GES_DECLARE_TYPE(BaseEffect, base_effect, BASE_EFFECT);
2010-11-15 22:32:23 +00:00
/**
2013-01-26 15:35:19 +00:00
* GESBaseEffect:
*/
2013-01-26 15:35:19 +00:00
struct _GESBaseEffect
{
/*< private > */
GESOperation parent;
2013-01-26 15:35:19 +00:00
GESBaseEffectPrivate *priv;
/* Padding for API extension */
gpointer _ges_reserved[GES_PADDING];
};
/**
2013-01-26 15:35:19 +00:00
* GESBaseEffectClass:
* @parent_class: parent class
*/
2013-01-26 15:35:19 +00:00
struct _GESBaseEffectClass
{
/*< private > */
GESOperationClass parent_class;
/* Padding for API extension */
gpointer _ges_reserved[GES_PADDING];
};
G_END_DECLS