2010-06-14 11:31:15 +00:00
|
|
|
/* GStreamer Editing Services
|
|
|
|
* Copyright (C) 2009 Edward Hervey <edward.hervey@collabora.co.uk>
|
|
|
|
* 2009 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
|
2012-11-04 00:25:20 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2010-06-14 11:31:15 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2014-04-07 19:02:48 +00:00
|
|
|
* SECTION:gestitleclip
|
2017-03-08 21:13:48 +00:00
|
|
|
* @title: GESTitleClip
|
2013-04-23 23:04:04 +00:00
|
|
|
* @short_description: Render stand-alone titles in GESLayer.
|
2011-01-07 12:48:53 +00:00
|
|
|
*
|
2010-07-01 14:48:45 +00:00
|
|
|
* Renders the given text in the specified font, at specified position, and
|
|
|
|
* with the specified background pattern.
|
2010-06-14 11:31:15 +00:00
|
|
|
*/
|
2018-09-24 14:41:24 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2010-06-14 11:31:15 +00:00
|
|
|
|
|
|
|
#include "ges-internal.h"
|
2013-01-17 03:55:03 +00:00
|
|
|
#include "ges-title-clip.h"
|
2013-01-17 03:35:39 +00:00
|
|
|
#include "ges-source-clip.h"
|
2013-01-26 15:31:33 +00:00
|
|
|
#include "ges-track-element.h"
|
2013-01-26 17:25:14 +00:00
|
|
|
#include "ges-title-source.h"
|
2010-06-14 11:31:15 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2010-07-02 10:25:12 +00:00
|
|
|
#define DEFAULT_TEXT ""
|
|
|
|
#define DEFAULT_FONT_DESC "Serif 36"
|
2013-01-17 03:55:03 +00:00
|
|
|
#define GES_TITLE_CLIP_VALIGN_TYPE (ges_title_clip_valign_get_type())
|
|
|
|
#define GES_TITLE_CLIP_HALIGN_TYPE (ges_title_clip_halign_get_type())
|
2010-06-15 11:16:28 +00:00
|
|
|
|
2013-01-17 03:55:03 +00:00
|
|
|
struct _GESTitleClipPrivate
|
2010-12-04 18:54:13 +00:00
|
|
|
{
|
2011-04-27 11:47:02 +00:00
|
|
|
GSList *track_titles;
|
2010-12-04 18:54:13 +00:00
|
|
|
};
|
|
|
|
|
2010-06-14 11:31:15 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
2010-06-15 11:16:28 +00:00
|
|
|
PROP_TEXT,
|
2010-06-16 14:58:42 +00:00
|
|
|
PROP_FONT_DESC,
|
2010-06-16 17:03:51 +00:00
|
|
|
PROP_HALIGNMENT,
|
|
|
|
PROP_VALIGNMENT,
|
2011-08-09 17:13:37 +00:00
|
|
|
PROP_COLOR,
|
2012-08-16 10:20:44 +00:00
|
|
|
PROP_BACKGROUND,
|
2011-08-09 17:15:18 +00:00
|
|
|
PROP_XPOS,
|
|
|
|
PROP_YPOS,
|
2010-06-14 11:31:15 +00:00
|
|
|
};
|
|
|
|
|
2018-09-06 01:55:02 +00:00
|
|
|
G_DEFINE_TYPE_WITH_PRIVATE (GESTitleClip, ges_title_clip, GES_TYPE_SOURCE_CLIP);
|
|
|
|
|
2013-01-26 15:31:33 +00:00
|
|
|
static GESTrackElement
|
2013-02-15 02:34:48 +00:00
|
|
|
* ges_title_clip_create_track_element (GESClip * clip, GESTrackType type);
|
2010-06-14 11:31:15 +00:00
|
|
|
|
2013-03-01 01:27:50 +00:00
|
|
|
static void _child_added (GESContainer * container,
|
|
|
|
GESTimelineElement * element);
|
|
|
|
static void _child_removed (GESContainer * container,
|
|
|
|
GESTimelineElement * element);
|
2011-04-27 11:47:02 +00:00
|
|
|
|
2010-06-14 11:31:15 +00:00
|
|
|
static void
|
2013-01-17 03:55:03 +00:00
|
|
|
ges_title_clip_get_property (GObject * object, guint property_id,
|
2010-06-14 11:31:15 +00:00
|
|
|
GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
2016-01-25 14:51:26 +00:00
|
|
|
GESTimelineElement *child, *tmpsrc = NULL;
|
2013-01-17 03:55:03 +00:00
|
|
|
GESTitleClipPrivate *priv = GES_TITLE_CLIP (object)->priv;
|
2010-06-14 11:31:15 +00:00
|
|
|
|
2016-01-25 14:51:26 +00:00
|
|
|
if (!priv->track_titles)
|
|
|
|
child = tmpsrc = GES_TIMELINE_ELEMENT (ges_title_source_new ());
|
|
|
|
else
|
|
|
|
child = priv->track_titles->data;
|
|
|
|
|
2010-06-14 11:31:15 +00:00
|
|
|
switch (property_id) {
|
2016-01-25 14:51:26 +00:00
|
|
|
/* Falltrough all over */
|
2010-06-15 11:16:28 +00:00
|
|
|
case PROP_TEXT:
|
2010-06-16 14:58:42 +00:00
|
|
|
case PROP_FONT_DESC:
|
2010-06-16 17:03:51 +00:00
|
|
|
case PROP_HALIGNMENT:
|
|
|
|
case PROP_VALIGNMENT:
|
2011-08-09 17:13:37 +00:00
|
|
|
case PROP_COLOR:
|
2012-08-16 10:20:44 +00:00
|
|
|
case PROP_BACKGROUND:
|
2011-08-09 17:15:18 +00:00
|
|
|
case PROP_XPOS:
|
|
|
|
case PROP_YPOS:
|
2016-01-25 14:51:26 +00:00
|
|
|
ges_timeline_element_get_child_property (child, pspec->name, value);
|
2011-08-09 17:15:18 +00:00
|
|
|
break;
|
2010-06-14 11:31:15 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
}
|
2016-01-25 14:51:26 +00:00
|
|
|
|
|
|
|
if (tmpsrc)
|
|
|
|
g_object_unref (tmpsrc);
|
2010-06-14 11:31:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-01-17 03:55:03 +00:00
|
|
|
ges_title_clip_set_property (GObject * object, guint property_id,
|
2010-06-14 11:31:15 +00:00
|
|
|
const GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
switch (property_id) {
|
2010-06-15 11:16:28 +00:00
|
|
|
case PROP_TEXT:
|
2010-06-16 14:58:42 +00:00
|
|
|
case PROP_FONT_DESC:
|
2010-06-16 17:03:51 +00:00
|
|
|
case PROP_HALIGNMENT:
|
|
|
|
case PROP_VALIGNMENT:
|
2011-08-09 17:13:37 +00:00
|
|
|
case PROP_COLOR:
|
2012-08-16 10:20:44 +00:00
|
|
|
case PROP_BACKGROUND:
|
2011-08-09 17:15:18 +00:00
|
|
|
case PROP_XPOS:
|
|
|
|
case PROP_YPOS:
|
2019-08-20 21:46:09 +00:00
|
|
|
ges_timeline_element_set_child_property (GES_TIMELINE_ELEMENT (object),
|
|
|
|
pspec->name, value);
|
2011-08-09 17:15:18 +00:00
|
|
|
break;
|
2010-06-14 11:31:15 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-01-17 03:55:03 +00:00
|
|
|
ges_title_clip_dispose (GObject * object)
|
2010-06-14 11:31:15 +00:00
|
|
|
{
|
2013-01-17 03:55:03 +00:00
|
|
|
G_OBJECT_CLASS (ges_title_clip_parent_class)->dispose (object);
|
2010-06-14 11:31:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-01-17 03:55:03 +00:00
|
|
|
ges_title_clip_class_init (GESTitleClipClass * klass)
|
2010-06-14 11:31:15 +00:00
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
2016-04-22 19:06:50 +00:00
|
|
|
GESClipClass *clip_class = GES_CLIP_CLASS (klass);
|
2013-03-01 01:27:50 +00:00
|
|
|
GESContainerClass *container_class = GES_CONTAINER_CLASS (klass);
|
2010-06-14 11:31:15 +00:00
|
|
|
|
2013-01-17 03:55:03 +00:00
|
|
|
object_class->get_property = ges_title_clip_get_property;
|
|
|
|
object_class->set_property = ges_title_clip_set_property;
|
|
|
|
object_class->dispose = ges_title_clip_dispose;
|
2010-06-14 11:31:15 +00:00
|
|
|
|
2010-06-15 11:16:28 +00:00
|
|
|
/**
|
2013-01-17 03:55:03 +00:00
|
|
|
* GESTitleClip:text:
|
2010-06-15 11:16:28 +00:00
|
|
|
*
|
|
|
|
* The text to diplay
|
2014-10-29 11:44:17 +00:00
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_set_children_properties or
|
|
|
|
* #ges_timeline_element_get_children_properties instead.
|
|
|
|
* See #GESTitleSource for more information about exposed properties
|
2010-06-15 11:16:28 +00:00
|
|
|
*/
|
|
|
|
g_object_class_install_property (object_class, PROP_TEXT,
|
|
|
|
g_param_spec_string ("text", "Text", "The text to display",
|
2014-09-27 07:59:12 +00:00
|
|
|
DEFAULT_TEXT, G_PARAM_READWRITE | G_PARAM_CONSTRUCT |
|
|
|
|
GES_PARAM_NO_SERIALIZATION));
|
2010-06-15 11:16:28 +00:00
|
|
|
|
2010-06-16 14:58:42 +00:00
|
|
|
/**
|
2013-01-17 03:55:03 +00:00
|
|
|
* GESTitleClip:font-desc:
|
2010-06-16 14:58:42 +00:00
|
|
|
*
|
|
|
|
* Pango font description string
|
2014-10-29 11:44:17 +00:00
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_set_children_properties or
|
|
|
|
* #ges_timeline_element_get_children_properties instead.
|
|
|
|
* See #GESTitleSource for more information about exposed properties
|
2010-06-16 14:58:42 +00:00
|
|
|
*/
|
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_FONT_DESC,
|
|
|
|
g_param_spec_string ("font-desc", "font description",
|
|
|
|
"Pango font description of font to be used for rendering. "
|
|
|
|
"See documentation of pango_font_description_from_string "
|
2010-07-02 10:26:42 +00:00
|
|
|
"for syntax.", DEFAULT_FONT_DESC,
|
2014-09-27 07:59:12 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS |
|
|
|
|
GES_PARAM_NO_SERIALIZATION));
|
2010-06-16 14:58:42 +00:00
|
|
|
|
2010-06-16 17:03:51 +00:00
|
|
|
/**
|
2013-01-17 03:55:03 +00:00
|
|
|
* GESTitleClip:valignment:
|
2010-06-16 17:03:51 +00:00
|
|
|
*
|
|
|
|
* Vertical alignent of the text
|
2014-10-29 11:44:17 +00:00
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_set_children_properties or
|
|
|
|
* #ges_timeline_element_get_children_properties instead.
|
|
|
|
* See #GESTitleSource for more information about exposed properties
|
2010-06-16 17:03:51 +00:00
|
|
|
*/
|
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_VALIGNMENT,
|
|
|
|
g_param_spec_enum ("valignment", "vertical alignment",
|
2010-07-02 10:25:12 +00:00
|
|
|
"Vertical alignment of the text", GES_TEXT_VALIGN_TYPE,
|
|
|
|
DEFAULT_VALIGNMENT,
|
2014-09-27 07:59:12 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS |
|
|
|
|
GES_PARAM_NO_SERIALIZATION));
|
2010-06-16 17:03:51 +00:00
|
|
|
/**
|
2013-01-17 03:55:03 +00:00
|
|
|
* GESTitleClip:halignment:
|
2010-06-16 17:03:51 +00:00
|
|
|
*
|
|
|
|
* Horizontal alignment of the text
|
2014-10-29 11:44:17 +00:00
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_set_children_properties or
|
|
|
|
* #ges_timeline_element_get_children_properties instead.
|
|
|
|
* See #GESTitleSource for more information about exposed properties
|
2010-06-16 17:03:51 +00:00
|
|
|
*/
|
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_HALIGNMENT,
|
|
|
|
g_param_spec_enum ("halignment", "horizontal alignment",
|
|
|
|
"Horizontal alignment of the text",
|
2010-07-02 10:25:12 +00:00
|
|
|
GES_TEXT_HALIGN_TYPE, DEFAULT_HALIGNMENT,
|
2014-09-27 07:59:12 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS |
|
|
|
|
GES_PARAM_NO_SERIALIZATION));
|
2010-06-14 11:31:15 +00:00
|
|
|
|
2016-04-22 19:06:50 +00:00
|
|
|
clip_class->create_track_element = ges_title_clip_create_track_element;
|
2013-03-01 01:27:50 +00:00
|
|
|
|
|
|
|
container_class->child_added = _child_added;
|
|
|
|
container_class->child_removed = _child_removed;
|
2011-08-09 17:13:37 +00:00
|
|
|
|
|
|
|
/**
|
2013-01-17 03:55:03 +00:00
|
|
|
* GESTitleClip:color:
|
2011-08-09 17:13:37 +00:00
|
|
|
*
|
|
|
|
* The color of the text
|
2014-10-29 11:44:17 +00:00
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_set_children_properties or
|
|
|
|
* #ges_timeline_element_get_children_properties instead.
|
|
|
|
* See #GESTitleSource for more information about exposed properties
|
2011-08-09 17:13:37 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
g_object_class_install_property (object_class, PROP_COLOR,
|
|
|
|
g_param_spec_uint ("color", "Color", "The color of the text",
|
2014-09-27 07:59:12 +00:00
|
|
|
0, G_MAXUINT32, G_MAXUINT32, G_PARAM_READWRITE | G_PARAM_CONSTRUCT |
|
|
|
|
GES_PARAM_NO_SERIALIZATION));
|
2011-08-09 17:13:37 +00:00
|
|
|
|
2011-08-09 17:15:18 +00:00
|
|
|
/**
|
2013-01-17 03:55:03 +00:00
|
|
|
* GESTitleClip:background:
|
2012-08-16 10:20:44 +00:00
|
|
|
*
|
|
|
|
* The background of the text
|
2014-10-29 11:44:17 +00:00
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_set_children_properties or
|
|
|
|
* #ges_timeline_element_get_children_properties instead.
|
|
|
|
* See #GESTitleSource for more information about exposed properties
|
2012-08-16 10:20:44 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
g_object_class_install_property (object_class, PROP_BACKGROUND,
|
|
|
|
g_param_spec_uint ("background", "Background",
|
|
|
|
"The background of the text", 0, G_MAXUINT32, G_MAXUINT32,
|
2014-09-27 07:59:12 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | GES_PARAM_NO_SERIALIZATION));
|
2012-08-16 10:20:44 +00:00
|
|
|
|
|
|
|
/**
|
2013-01-17 03:55:03 +00:00
|
|
|
* GESTitleClip:xpos:
|
2011-08-09 17:15:18 +00:00
|
|
|
*
|
|
|
|
* The horizontal position of the text
|
2014-10-29 11:44:17 +00:00
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_set_children_properties or
|
|
|
|
* #ges_timeline_element_get_children_properties instead.
|
|
|
|
* See #GESTitleSource for more information about exposed properties
|
2011-08-09 17:15:18 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
g_object_class_install_property (object_class, PROP_XPOS,
|
|
|
|
g_param_spec_double ("xpos", "Xpos", "The horizontal position",
|
2014-09-27 07:59:12 +00:00
|
|
|
0, 1, 0.5, G_PARAM_READWRITE | G_PARAM_CONSTRUCT
|
|
|
|
| GES_PARAM_NO_SERIALIZATION));
|
2011-08-09 17:15:18 +00:00
|
|
|
|
|
|
|
/**
|
2013-01-17 03:55:03 +00:00
|
|
|
* GESTitleClip:ypos:
|
2011-08-09 17:15:18 +00:00
|
|
|
*
|
|
|
|
* The vertical position of the text
|
2014-10-29 11:44:17 +00:00
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_set_children_properties or
|
|
|
|
* #ges_timeline_element_get_children_properties instead.
|
|
|
|
* See #GESTitleSource for more information about exposed properties
|
2011-08-09 17:15:18 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
g_object_class_install_property (object_class, PROP_YPOS,
|
|
|
|
g_param_spec_double ("ypos", "Ypos", "The vertical position",
|
2014-09-27 07:59:12 +00:00
|
|
|
0, 1, 0.5, G_PARAM_READWRITE | G_PARAM_CONSTRUCT
|
|
|
|
| GES_PARAM_NO_SERIALIZATION));
|
2010-06-14 11:31:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-01-17 03:55:03 +00:00
|
|
|
ges_title_clip_init (GESTitleClip * self)
|
2010-06-14 11:31:15 +00:00
|
|
|
{
|
2018-09-06 01:55:02 +00:00
|
|
|
self->priv = ges_title_clip_get_instance_private (self);
|
2010-12-04 18:54:13 +00:00
|
|
|
|
2013-01-15 13:52:17 +00:00
|
|
|
GES_TIMELINE_ELEMENT (self)->duration = 0;
|
2010-07-06 17:03:05 +00:00
|
|
|
/* Not 100% required since a new gobject's content will always be memzero'd */
|
2010-06-15 17:21:37 +00:00
|
|
|
}
|
|
|
|
|
2011-01-07 12:48:53 +00:00
|
|
|
/**
|
2013-01-17 03:55:03 +00:00
|
|
|
* ges_title_clip_set_text:
|
|
|
|
* @self: the #GESTitleClip* to set text on
|
2011-01-07 12:48:53 +00:00
|
|
|
* @text: the text to render. an internal copy of this text will be
|
|
|
|
* made.
|
|
|
|
*
|
2013-02-08 20:11:22 +00:00
|
|
|
* Sets the text this clip will render.
|
2011-01-07 12:48:53 +00:00
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_set_children_properties instead.
|
|
|
|
* See #GESTitleSource for more information about exposed properties
|
2011-01-07 12:48:53 +00:00
|
|
|
*/
|
|
|
|
void
|
2013-01-17 03:55:03 +00:00
|
|
|
ges_title_clip_set_text (GESTitleClip * self, const gchar * text)
|
2010-06-15 17:21:37 +00:00
|
|
|
{
|
2011-04-27 11:47:02 +00:00
|
|
|
GSList *tmp;
|
2010-06-15 17:21:37 +00:00
|
|
|
|
2012-09-10 00:27:08 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "text:%s", text);
|
2010-06-15 17:21:37 +00:00
|
|
|
|
2011-04-27 11:47:02 +00:00
|
|
|
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
|
2019-08-20 21:46:09 +00:00
|
|
|
ges_timeline_element_set_child_properties (tmp->data, "text", text, NULL);
|
2010-06-15 17:21:37 +00:00
|
|
|
}
|
2010-06-14 11:31:15 +00:00
|
|
|
}
|
|
|
|
|
2011-01-07 12:48:53 +00:00
|
|
|
/**
|
2013-01-17 03:55:03 +00:00
|
|
|
* ges_title_clip_set_font_desc:
|
|
|
|
* @self: the #GESTitleClip*
|
2011-01-07 12:48:53 +00:00
|
|
|
* @font_desc: the pango font description
|
|
|
|
*
|
|
|
|
* Sets the pango font description of the text.
|
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_set_children_properties instead.
|
|
|
|
* See #GESTitleSource for more information about exposed properties
|
2011-01-07 12:48:53 +00:00
|
|
|
*/
|
|
|
|
void
|
2013-01-17 03:55:03 +00:00
|
|
|
ges_title_clip_set_font_desc (GESTitleClip * self, const gchar * font_desc)
|
2010-06-16 14:58:42 +00:00
|
|
|
{
|
2011-04-27 11:47:02 +00:00
|
|
|
GSList *tmp;
|
2010-06-16 14:58:42 +00:00
|
|
|
|
2012-09-10 00:27:08 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "font_desc:%s", font_desc);
|
2010-06-16 14:58:42 +00:00
|
|
|
|
2011-04-27 11:47:02 +00:00
|
|
|
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
|
2019-08-20 21:46:09 +00:00
|
|
|
ges_timeline_element_set_child_properties (tmp->data,
|
2014-10-29 11:44:17 +00:00
|
|
|
"font-desc", font_desc, NULL);
|
2010-06-16 14:58:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-07 12:48:53 +00:00
|
|
|
/**
|
2013-01-17 03:55:03 +00:00
|
|
|
* ges_title_clip_set_halignment:
|
|
|
|
* @self: the #GESTitleClip* to set horizontal alignement of text on
|
2011-01-07 12:48:53 +00:00
|
|
|
* @halign: #GESTextHAlign
|
|
|
|
*
|
|
|
|
* Sets the horizontal aligment of the text.
|
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_set_children_properties instead.
|
|
|
|
* See #GESTitleSource for more information about exposed properties
|
2011-01-07 12:48:53 +00:00
|
|
|
*/
|
|
|
|
void
|
2013-01-17 03:55:03 +00:00
|
|
|
ges_title_clip_set_halignment (GESTitleClip * self, GESTextHAlign halign)
|
2010-06-16 17:03:51 +00:00
|
|
|
{
|
2011-04-27 11:47:02 +00:00
|
|
|
GSList *tmp;
|
2010-06-16 17:03:51 +00:00
|
|
|
|
2012-09-10 00:27:08 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "halign:%d", halign);
|
2010-06-16 17:03:51 +00:00
|
|
|
|
2011-04-27 11:47:02 +00:00
|
|
|
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
|
2019-08-20 21:46:09 +00:00
|
|
|
ges_timeline_element_set_child_properties (tmp->data,
|
2014-10-29 11:44:17 +00:00
|
|
|
"halignment", halign, NULL);
|
2010-06-16 17:03:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-07 12:48:53 +00:00
|
|
|
/**
|
2013-01-17 03:55:03 +00:00
|
|
|
* ges_title_clip_set_valignment:
|
|
|
|
* @self: the #GESTitleClip* to set vertical alignement of text on
|
2011-01-07 12:48:53 +00:00
|
|
|
* @valign: #GESTextVAlign
|
|
|
|
*
|
|
|
|
* Sets the vertical aligment of the text.
|
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_set_children_properties instead.
|
|
|
|
* See #GESTitleSource for more information about exposed properties
|
2011-01-07 12:48:53 +00:00
|
|
|
*/
|
|
|
|
void
|
2013-01-17 03:55:03 +00:00
|
|
|
ges_title_clip_set_valignment (GESTitleClip * self, GESTextVAlign valign)
|
2010-06-16 17:03:51 +00:00
|
|
|
{
|
2011-04-27 11:47:02 +00:00
|
|
|
GSList *tmp;
|
2010-06-16 17:03:51 +00:00
|
|
|
|
2012-09-10 00:27:08 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "valign:%d", valign);
|
2010-06-16 17:03:51 +00:00
|
|
|
|
2011-04-27 11:47:02 +00:00
|
|
|
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
|
2019-08-20 21:46:09 +00:00
|
|
|
ges_timeline_element_set_child_properties (tmp->data,
|
2014-10-29 11:44:17 +00:00
|
|
|
"valignment", valign, NULL);
|
2010-06-16 17:03:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-09 17:13:37 +00:00
|
|
|
/**
|
2013-01-17 03:55:03 +00:00
|
|
|
* ges_title_clip_set_color:
|
|
|
|
* @self: the #GESTitleClip* to set
|
2011-08-09 17:13:37 +00:00
|
|
|
* @color: The color @self is being set to
|
|
|
|
*
|
|
|
|
* Sets the color of the text.
|
2014-10-29 11:44:17 +00:00
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_set_children_properties instead.
|
|
|
|
* See #GESTitleSource for more information about exposed properties
|
2011-08-09 17:13:37 +00:00
|
|
|
*/
|
|
|
|
void
|
2013-01-17 03:55:03 +00:00
|
|
|
ges_title_clip_set_color (GESTitleClip * self, guint32 color)
|
2011-08-09 17:13:37 +00:00
|
|
|
{
|
|
|
|
GSList *tmp;
|
|
|
|
|
2012-09-10 00:27:08 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "color:%d", color);
|
2011-08-09 17:13:37 +00:00
|
|
|
|
|
|
|
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
|
2019-08-20 21:46:09 +00:00
|
|
|
ges_timeline_element_set_child_properties (tmp->data, "color", color, NULL);
|
2011-08-09 17:13:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-16 10:20:44 +00:00
|
|
|
/**
|
2013-01-17 03:55:03 +00:00
|
|
|
* ges_title_clip_set_background:
|
|
|
|
* @self: the #GESTitleClip* to set
|
2012-08-16 10:20:44 +00:00
|
|
|
* @background: The color @self is being set to
|
|
|
|
*
|
|
|
|
* Sets the background of the text.
|
2014-10-29 11:44:17 +00:00
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_set_children_properties instead.
|
|
|
|
* See #GESTitleSource for more information about exposed properties
|
2012-08-16 10:20:44 +00:00
|
|
|
*/
|
|
|
|
void
|
2013-01-17 03:55:03 +00:00
|
|
|
ges_title_clip_set_background (GESTitleClip * self, guint32 background)
|
2012-08-16 10:20:44 +00:00
|
|
|
{
|
|
|
|
GSList *tmp;
|
|
|
|
|
2012-09-10 00:27:08 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "background:%d", background);
|
2012-08-16 10:20:44 +00:00
|
|
|
|
|
|
|
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
|
2019-08-20 21:46:09 +00:00
|
|
|
ges_timeline_element_set_child_properties (tmp->data,
|
2014-10-29 11:44:17 +00:00
|
|
|
"foreground-color", background, NULL);
|
2012-08-16 10:20:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-09 17:15:18 +00:00
|
|
|
/**
|
2013-01-17 03:55:03 +00:00
|
|
|
* ges_title_clip_set_xpos:
|
|
|
|
* @self: the #GESTitleClip* to set
|
2011-08-09 17:15:18 +00:00
|
|
|
* @position: The horizontal position @self is being set to
|
|
|
|
*
|
|
|
|
* Sets the horizontal position of the text.
|
2014-10-29 11:44:17 +00:00
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_set_children_properties instead.
|
|
|
|
* See #GESTitleSource for more information about exposed properties
|
2011-08-09 17:15:18 +00:00
|
|
|
*/
|
|
|
|
void
|
2013-01-17 03:55:03 +00:00
|
|
|
ges_title_clip_set_xpos (GESTitleClip * self, gdouble position)
|
2011-08-09 17:15:18 +00:00
|
|
|
{
|
|
|
|
GSList *tmp;
|
|
|
|
|
2012-09-10 00:27:08 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "xpos:%f", position);
|
2011-08-09 17:15:18 +00:00
|
|
|
|
|
|
|
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
|
2019-08-20 21:46:09 +00:00
|
|
|
ges_timeline_element_set_child_properties (tmp->data, "xpos", position,
|
|
|
|
NULL);
|
2011-08-09 17:15:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-01-17 03:55:03 +00:00
|
|
|
* ges_title_clip_set_ypos:
|
|
|
|
* @self: the #GESTitleClip* to set
|
2011-08-09 17:15:18 +00:00
|
|
|
* @position: The vertical position @self is being set to
|
|
|
|
*
|
|
|
|
* Sets the vertical position of the text.
|
2014-10-29 11:44:17 +00:00
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_set_children_properties instead.
|
|
|
|
* See #GESTitleSource for more information about exposed properties
|
2011-08-09 17:15:18 +00:00
|
|
|
*/
|
|
|
|
void
|
2013-01-17 03:55:03 +00:00
|
|
|
ges_title_clip_set_ypos (GESTitleClip * self, gdouble position)
|
2011-08-09 17:15:18 +00:00
|
|
|
{
|
|
|
|
GSList *tmp;
|
|
|
|
|
2012-09-10 00:27:08 +00:00
|
|
|
GST_DEBUG_OBJECT (self, "ypos:%f", position);
|
2011-08-09 17:15:18 +00:00
|
|
|
|
|
|
|
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
|
2019-08-20 21:46:09 +00:00
|
|
|
ges_timeline_element_set_child_properties (tmp->data, "ypos", position,
|
|
|
|
NULL);
|
2011-08-09 17:15:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-07 12:48:53 +00:00
|
|
|
/**
|
2013-01-17 03:55:03 +00:00
|
|
|
* ges_title_clip_get_text:
|
|
|
|
* @self: a #GESTitleClip
|
2011-01-07 12:48:53 +00:00
|
|
|
*
|
2011-01-10 13:28:35 +00:00
|
|
|
* Get the text currently set on @self.
|
|
|
|
*
|
|
|
|
* Returns: The text currently set on @self.
|
2011-01-07 12:48:53 +00:00
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_get_children_properties instead.
|
|
|
|
* See #GESTitleSource for more information about exposed properties
|
2011-01-07 12:48:53 +00:00
|
|
|
*/
|
|
|
|
const gchar *
|
2013-01-17 03:55:03 +00:00
|
|
|
ges_title_clip_get_text (GESTitleClip * self)
|
2011-01-07 12:48:53 +00:00
|
|
|
{
|
2014-10-29 11:44:17 +00:00
|
|
|
gchar *text;
|
|
|
|
|
2019-08-20 21:46:09 +00:00
|
|
|
ges_timeline_element_get_child_properties (self->priv->track_titles->data,
|
2014-10-29 11:44:17 +00:00
|
|
|
"text", &text, NULL);
|
|
|
|
|
|
|
|
return text;
|
2011-01-07 12:48:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-01-17 03:55:03 +00:00
|
|
|
* ges_title_clip_get_font_desc:
|
|
|
|
* @self: a #GESTitleClip
|
2011-01-07 12:48:53 +00:00
|
|
|
*
|
2011-01-10 13:28:35 +00:00
|
|
|
* Get the pango font description used by @self.
|
|
|
|
*
|
|
|
|
* Returns: The pango font description used by @self.
|
2011-01-07 12:48:53 +00:00
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_get_children_properties instead.
|
|
|
|
* See #GESTitleSource for more information about exposed properties
|
2011-01-07 12:48:53 +00:00
|
|
|
*/
|
|
|
|
const char *
|
2013-01-17 03:55:03 +00:00
|
|
|
ges_title_clip_get_font_desc (GESTitleClip * self)
|
2011-01-07 12:48:53 +00:00
|
|
|
{
|
2014-10-29 11:44:17 +00:00
|
|
|
gchar *font_desc;
|
|
|
|
|
2019-08-20 21:46:09 +00:00
|
|
|
ges_timeline_element_get_child_properties (self->priv->track_titles->data,
|
2014-10-29 11:44:17 +00:00
|
|
|
"font-desc", &font_desc, NULL);
|
|
|
|
|
|
|
|
return font_desc;
|
2011-01-07 12:48:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-01-17 03:55:03 +00:00
|
|
|
* ges_title_clip_get_halignment:
|
|
|
|
* @self: a #GESTitleClip
|
2011-01-07 12:48:53 +00:00
|
|
|
*
|
2011-01-10 13:28:35 +00:00
|
|
|
* Get the horizontal aligment used by @self.
|
|
|
|
*
|
2011-01-07 12:48:53 +00:00
|
|
|
* Returns: The horizontal aligment used by @self.
|
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_get_children_properties instead.
|
|
|
|
* See #GESTitleSource for more information about exposed properties
|
2011-01-07 12:48:53 +00:00
|
|
|
*/
|
|
|
|
GESTextHAlign
|
2013-01-17 03:55:03 +00:00
|
|
|
ges_title_clip_get_halignment (GESTitleClip * self)
|
2011-01-07 12:48:53 +00:00
|
|
|
{
|
2014-10-29 11:44:17 +00:00
|
|
|
GESTextHAlign halign;
|
|
|
|
|
2019-08-20 21:46:09 +00:00
|
|
|
ges_timeline_element_get_child_properties (self->priv->track_titles->data,
|
2014-10-29 11:44:17 +00:00
|
|
|
"halignment", &halign, NULL);
|
|
|
|
|
|
|
|
return halign;
|
2011-01-07 12:48:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-01-17 03:55:03 +00:00
|
|
|
* ges_title_clip_get_valignment:
|
|
|
|
* @self: a #GESTitleClip
|
2011-01-07 12:48:53 +00:00
|
|
|
*
|
2011-01-10 13:28:35 +00:00
|
|
|
* Get the vertical aligment used by @self.
|
|
|
|
*
|
2011-01-07 12:48:53 +00:00
|
|
|
* Returns: The vertical aligment used by @self.
|
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_get_children_properties instead.
|
|
|
|
* See #GESTitleSource for more information about exposed properties
|
2011-01-07 12:48:53 +00:00
|
|
|
*/
|
|
|
|
GESTextVAlign
|
2013-01-17 03:55:03 +00:00
|
|
|
ges_title_clip_get_valignment (GESTitleClip * self)
|
2011-01-07 12:48:53 +00:00
|
|
|
{
|
2014-10-29 11:44:17 +00:00
|
|
|
GESTextVAlign valign;
|
|
|
|
|
2019-08-20 21:46:09 +00:00
|
|
|
ges_timeline_element_get_child_properties (self->priv->track_titles->data,
|
2014-10-29 11:44:17 +00:00
|
|
|
"valignment", &valign, NULL);
|
|
|
|
|
|
|
|
return valign;
|
2011-01-07 12:48:53 +00:00
|
|
|
}
|
|
|
|
|
2011-08-09 17:13:37 +00:00
|
|
|
/**
|
2013-01-27 19:21:01 +00:00
|
|
|
* ges_title_clip_get_text_color:
|
2013-01-17 03:55:03 +00:00
|
|
|
* @self: a #GESTitleClip
|
2011-08-09 17:13:37 +00:00
|
|
|
*
|
|
|
|
* Get the color used by @self.
|
|
|
|
*
|
|
|
|
* Returns: The color used by @self.
|
2014-10-29 11:44:17 +00:00
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_get_children_properties instead.
|
|
|
|
* See #GESTitleSource for more information about exposed properties
|
2011-08-09 17:13:37 +00:00
|
|
|
*/
|
|
|
|
const guint32
|
2013-01-27 19:21:01 +00:00
|
|
|
ges_title_clip_get_text_color (GESTitleClip * self)
|
2011-08-09 17:13:37 +00:00
|
|
|
{
|
2014-10-29 11:44:17 +00:00
|
|
|
guint32 color;
|
|
|
|
|
2019-08-20 21:46:09 +00:00
|
|
|
ges_timeline_element_get_child_properties (self->priv->track_titles->data,
|
2014-10-29 11:44:17 +00:00
|
|
|
"color", &color, NULL);
|
|
|
|
|
|
|
|
return color;
|
2011-08-09 17:13:37 +00:00
|
|
|
}
|
|
|
|
|
2012-08-16 10:20:44 +00:00
|
|
|
/**
|
2013-01-27 19:16:27 +00:00
|
|
|
* ges_title_clip_get_background_color:
|
2013-01-17 03:55:03 +00:00
|
|
|
* @self: a #GESTitleClip
|
2012-08-16 10:20:44 +00:00
|
|
|
*
|
|
|
|
* Get the background used by @self.
|
|
|
|
*
|
|
|
|
* Returns: The color used by @self.
|
2014-10-29 11:44:17 +00:00
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_get_children_properties instead.
|
|
|
|
* See #GESTitleSource for more information about exposed properties
|
2012-08-16 10:20:44 +00:00
|
|
|
*/
|
|
|
|
const guint32
|
2013-01-27 19:16:27 +00:00
|
|
|
ges_title_clip_get_background_color (GESTitleClip * self)
|
2012-08-16 10:20:44 +00:00
|
|
|
{
|
2014-10-29 11:44:17 +00:00
|
|
|
guint32 color;
|
|
|
|
|
2019-08-20 21:46:09 +00:00
|
|
|
ges_timeline_element_get_child_properties (self->priv->track_titles->data,
|
2014-10-29 11:44:17 +00:00
|
|
|
"foreground-color", &color, NULL);
|
|
|
|
|
|
|
|
return color;
|
2012-08-16 10:20:44 +00:00
|
|
|
}
|
|
|
|
|
2011-08-09 17:15:18 +00:00
|
|
|
/**
|
2013-01-17 03:55:03 +00:00
|
|
|
* ges_title_clip_get_xpos:
|
|
|
|
* @self: a #GESTitleClip
|
2011-08-09 17:15:18 +00:00
|
|
|
*
|
|
|
|
* Get the horizontal position used by @self.
|
|
|
|
*
|
|
|
|
* Returns: The horizontal position used by @self.
|
2014-10-29 11:44:17 +00:00
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_get_children_properties instead.
|
|
|
|
* See #GESTitleSource for more information about exposed properties
|
2011-08-09 17:15:18 +00:00
|
|
|
*/
|
|
|
|
const gdouble
|
2013-01-17 03:55:03 +00:00
|
|
|
ges_title_clip_get_xpos (GESTitleClip * self)
|
2011-08-09 17:15:18 +00:00
|
|
|
{
|
2014-10-29 11:44:17 +00:00
|
|
|
gdouble xpos;
|
|
|
|
|
2019-08-20 21:46:09 +00:00
|
|
|
ges_timeline_element_get_child_properties (self->priv->track_titles->data,
|
2014-10-29 11:44:17 +00:00
|
|
|
"xpos", &xpos, NULL);
|
|
|
|
|
|
|
|
return xpos;
|
2011-08-09 17:15:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-01-17 03:55:03 +00:00
|
|
|
* ges_title_clip_get_ypos:
|
|
|
|
* @self: a #GESTitleClip
|
2011-08-09 17:15:18 +00:00
|
|
|
*
|
|
|
|
* Get the vertical position used by @self.
|
|
|
|
*
|
|
|
|
* Returns: The vertical position used by @self.
|
2014-10-29 11:44:17 +00:00
|
|
|
*
|
2019-05-01 15:53:07 +00:00
|
|
|
* Deprecated:1.6: use #ges_timeline_element_get_children_property instead
|
2011-08-09 17:15:18 +00:00
|
|
|
*/
|
|
|
|
const gdouble
|
2013-01-17 03:55:03 +00:00
|
|
|
ges_title_clip_get_ypos (GESTitleClip * self)
|
2011-08-09 17:15:18 +00:00
|
|
|
{
|
2014-10-29 11:44:17 +00:00
|
|
|
gdouble ypos;
|
|
|
|
|
2019-08-20 21:46:09 +00:00
|
|
|
ges_timeline_element_get_child_properties (self->priv->track_titles->data,
|
2014-10-29 11:44:17 +00:00
|
|
|
"ypos", &ypos, NULL);
|
|
|
|
|
|
|
|
return ypos;
|
2011-08-09 17:15:18 +00:00
|
|
|
}
|
|
|
|
|
2011-04-27 11:47:02 +00:00
|
|
|
static void
|
2013-03-01 01:27:50 +00:00
|
|
|
_child_removed (GESContainer * container, GESTimelineElement * element)
|
2011-04-27 11:47:02 +00:00
|
|
|
{
|
2013-03-01 01:27:50 +00:00
|
|
|
GESTitleClipPrivate *priv = GES_TITLE_CLIP (container)->priv;
|
2011-04-27 11:47:02 +00:00
|
|
|
|
2013-03-01 01:27:50 +00:00
|
|
|
/* If this is called, we should be sure the element exists */
|
|
|
|
if (GES_IS_TITLE_SOURCE (element)) {
|
|
|
|
GST_DEBUG_OBJECT (container, "%" GST_PTR_FORMAT " removed", element);
|
|
|
|
priv->track_titles = g_slist_remove (priv->track_titles, element);
|
2013-03-16 22:05:04 +00:00
|
|
|
gst_object_unref (element);
|
2011-04-27 11:47:02 +00:00
|
|
|
}
|
2016-06-20 18:00:07 +00:00
|
|
|
|
|
|
|
GES_CONTAINER_CLASS (ges_title_clip_parent_class)->child_removed (container,
|
|
|
|
element);
|
2011-04-27 11:47:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-03-01 01:27:50 +00:00
|
|
|
_child_added (GESContainer * container, GESTimelineElement * element)
|
2011-04-27 11:47:02 +00:00
|
|
|
{
|
2013-03-01 01:27:50 +00:00
|
|
|
GESTitleClipPrivate *priv = GES_TITLE_CLIP (container)->priv;
|
2011-04-27 11:47:02 +00:00
|
|
|
|
2013-03-01 01:27:50 +00:00
|
|
|
if (GES_IS_TITLE_SOURCE (element)) {
|
|
|
|
GST_DEBUG_OBJECT (container, "%" GST_PTR_FORMAT " added", element);
|
|
|
|
priv->track_titles = g_slist_prepend (priv->track_titles,
|
2013-03-16 22:05:04 +00:00
|
|
|
gst_object_ref (element));
|
2011-04-27 11:47:02 +00:00
|
|
|
}
|
2016-06-20 18:00:07 +00:00
|
|
|
|
|
|
|
GES_CONTAINER_CLASS (ges_title_clip_parent_class)->child_added (container,
|
|
|
|
element);
|
2011-04-27 11:47:02 +00:00
|
|
|
}
|
|
|
|
|
2013-01-26 15:31:33 +00:00
|
|
|
static GESTrackElement *
|
2013-02-15 02:34:48 +00:00
|
|
|
ges_title_clip_create_track_element (GESClip * clip, GESTrackType type)
|
2010-06-14 11:31:15 +00:00
|
|
|
{
|
|
|
|
|
2013-01-26 15:31:33 +00:00
|
|
|
GESTrackElement *res = NULL;
|
2010-06-14 11:31:15 +00:00
|
|
|
|
2013-02-15 02:34:48 +00:00
|
|
|
GST_DEBUG_OBJECT (clip, "a GESTitleSource");
|
2010-06-14 11:31:15 +00:00
|
|
|
|
2014-10-29 11:44:17 +00:00
|
|
|
if (type == GES_TRACK_TYPE_VIDEO)
|
2013-01-26 17:25:14 +00:00
|
|
|
res = (GESTrackElement *) ges_title_source_new ();
|
2010-06-16 11:21:19 +00:00
|
|
|
|
2010-06-14 11:31:15 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-01-17 03:55:03 +00:00
|
|
|
* ges_title_clip_new:
|
2010-06-14 11:31:15 +00:00
|
|
|
*
|
2013-01-17 03:55:03 +00:00
|
|
|
* Creates a new #GESTitleClip
|
2010-06-14 11:31:15 +00:00
|
|
|
*
|
2016-05-14 23:04:17 +00:00
|
|
|
* Returns: (transfer floating) (nullable): The newly created #GESTitleClip,
|
|
|
|
* or %NULL if there was an error.
|
2010-06-14 11:31:15 +00:00
|
|
|
*/
|
2013-01-17 03:55:03 +00:00
|
|
|
GESTitleClip *
|
|
|
|
ges_title_clip_new (void)
|
2010-06-14 11:31:15 +00:00
|
|
|
{
|
2013-03-03 14:50:10 +00:00
|
|
|
GESTitleClip *new_clip;
|
|
|
|
GESAsset *asset = ges_asset_request (GES_TYPE_TITLE_CLIP, NULL, NULL);
|
|
|
|
|
|
|
|
new_clip = GES_TITLE_CLIP (ges_asset_extract (asset, NULL));
|
2013-03-16 22:05:04 +00:00
|
|
|
gst_object_unref (asset);
|
2013-03-03 14:50:10 +00:00
|
|
|
|
|
|
|
return new_clip;
|
2010-06-14 11:31:15 +00:00
|
|
|
}
|