2013-01-10 21:50:54 +00:00
|
|
|
/* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 2; tab-width: 2 -*- */
|
|
|
|
/*
|
|
|
|
* gst-editing-services
|
|
|
|
* Copyright (C) 2013 Thibault Saunier <thibault.saunier@collabora.com>
|
|
|
|
*
|
|
|
|
* gst-editing-services is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU Lesser General Public License as published
|
|
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* gst-editing-services 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 Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.";
|
|
|
|
*/
|
|
|
|
|
2020-03-17 21:13:51 +00:00
|
|
|
#pragma once
|
2013-01-10 21:50:54 +00:00
|
|
|
|
|
|
|
#include <glib-object.h>
|
2013-01-26 15:31:33 +00:00
|
|
|
#include "ges-track-element.h"
|
2013-01-20 15:42:29 +00:00
|
|
|
#include "ges-clip.h"
|
2013-04-23 23:04:04 +00:00
|
|
|
#include "ges-layer.h"
|
2013-01-10 21:50:54 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GES_TYPE_AUTO_TRANSITION (ges_auto_transition_get_type ())
|
|
|
|
typedef struct _GESAutoTransitionClass GESAutoTransitionClass;
|
|
|
|
typedef struct _GESAutoTransition GESAutoTransition;
|
|
|
|
|
2020-03-17 18:51:39 +00:00
|
|
|
GES_DECLARE_TYPE(AutoTransition, auto_transition, AUTO_TRANSITION);
|
2013-01-10 21:50:54 +00:00
|
|
|
|
|
|
|
struct _GESAutoTransitionClass
|
|
|
|
{
|
|
|
|
GObjectClass parent_class;
|
|
|
|
|
|
|
|
/* Padding for API extension */
|
|
|
|
gpointer _ges_reserved[GES_PADDING];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GESAutoTransition
|
|
|
|
{
|
|
|
|
GObject parent_instance;
|
|
|
|
|
|
|
|
/* <read only and construct only> */
|
2013-01-26 15:31:33 +00:00
|
|
|
GESTrackElement *previous_source;
|
|
|
|
GESTrackElement *next_source;
|
|
|
|
GESTrackElement *transition;
|
2013-01-10 21:50:54 +00:00
|
|
|
|
2013-01-17 02:16:02 +00:00
|
|
|
GESClip *transition_clip;
|
2015-05-31 12:16:05 +00:00
|
|
|
gboolean positioning;
|
2013-01-10 21:50:54 +00:00
|
|
|
|
2020-04-22 14:06:32 +00:00
|
|
|
gboolean frozen;
|
|
|
|
|
2013-01-10 21:50:54 +00:00
|
|
|
/* Padding for API extension */
|
|
|
|
gpointer _ges_reserved[GES_PADDING];
|
|
|
|
};
|
|
|
|
|
2019-03-01 22:32:19 +00:00
|
|
|
G_GNUC_INTERNAL void ges_auto_transition_update (GESAutoTransition *self);
|
2015-06-25 08:28:41 +00:00
|
|
|
G_GNUC_INTERNAL GESAutoTransition * ges_auto_transition_new (GESTrackElement * transition,
|
2013-01-26 15:31:33 +00:00
|
|
|
GESTrackElement * previous_source,
|
|
|
|
GESTrackElement * next_source);
|
2013-01-10 21:50:54 +00:00
|
|
|
|
2020-04-22 14:06:32 +00:00
|
|
|
G_END_DECLS
|