2013-01-17 03:04:41 +00:00
|
|
|
/* GStreamer Editing Services
|
|
|
|
* Copyright (C) 2011 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
|
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2020-03-17 21:13:51 +00:00
|
|
|
#pragma once
|
2013-01-17 03:04:41 +00:00
|
|
|
|
|
|
|
#include <glib-object.h>
|
|
|
|
#include <ges/ges-types.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2013-01-25 18:51:02 +00:00
|
|
|
#define GES_TYPE_EFFECT_CLIP ges_effect_clip_get_type()
|
2020-03-17 18:51:39 +00:00
|
|
|
GES_DECLARE_TYPE(EffectClip, effect_clip, EFFECT_CLIP);
|
2013-01-17 03:04:41 +00:00
|
|
|
|
|
|
|
/**
|
2013-01-25 18:51:02 +00:00
|
|
|
* GESEffectClip:
|
2013-01-17 03:04:41 +00:00
|
|
|
*/
|
2013-01-25 18:51:02 +00:00
|
|
|
struct _GESEffectClip {
|
2013-01-17 03:04:41 +00:00
|
|
|
/*< private >*/
|
2013-01-25 18:45:07 +00:00
|
|
|
GESBaseEffectClip parent;
|
2013-01-17 03:04:41 +00:00
|
|
|
|
2013-01-25 18:51:02 +00:00
|
|
|
GESEffectClipPrivate *priv;
|
2013-01-17 03:04:41 +00:00
|
|
|
|
|
|
|
/* Padding for API extension */
|
|
|
|
gpointer _ges_reserved[GES_PADDING];
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2013-01-25 18:51:02 +00:00
|
|
|
* GESEffectClipClass:
|
2013-01-17 03:04:41 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-01-25 18:51:02 +00:00
|
|
|
struct _GESEffectClipClass {
|
2013-01-17 03:04:41 +00:00
|
|
|
/*< private >*/
|
2013-01-25 18:45:07 +00:00
|
|
|
GESBaseEffectClipClass parent_class;
|
2013-01-17 03:04:41 +00:00
|
|
|
|
|
|
|
/* Padding for API extension */
|
|
|
|
gpointer _ges_reserved[GES_PADDING];
|
|
|
|
};
|
|
|
|
|
2018-03-13 14:14:57 +00:00
|
|
|
GES_API GESEffectClip *
|
2013-01-25 18:51:02 +00:00
|
|
|
ges_effect_clip_new (const gchar * video_bin_description,
|
2013-01-17 03:04:41 +00:00
|
|
|
const gchar * audio_bin_description);
|
|
|
|
|
2020-03-17 21:13:51 +00:00
|
|
|
G_END_DECLS
|