mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
a66e674649
g-ir-scanner includes section docs as class/interface docs if the section name is equal to the lowercase type name. Since all the documentation is in section blocks, rename them to match the type names. https://bugzilla.gnome.org/show_bug.cgi?id=727776
652 lines
17 KiB
C
652 lines
17 KiB
C
/* 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
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
/**
|
|
* SECTION:gestitleclip
|
|
* @short_description: Render stand-alone titles in GESLayer.
|
|
*
|
|
* Renders the given text in the specified font, at specified position, and
|
|
* with the specified background pattern.
|
|
*/
|
|
|
|
#include "ges-internal.h"
|
|
#include "ges-title-clip.h"
|
|
#include "ges-source-clip.h"
|
|
#include "ges-track-element.h"
|
|
#include "ges-title-source.h"
|
|
#include <string.h>
|
|
|
|
G_DEFINE_TYPE (GESTitleClip, ges_title_clip, GES_TYPE_SOURCE_CLIP);
|
|
|
|
#define DEFAULT_TEXT ""
|
|
#define DEFAULT_FONT_DESC "Serif 36"
|
|
#define GES_TITLE_CLIP_VALIGN_TYPE (ges_title_clip_valign_get_type())
|
|
#define GES_TITLE_CLIP_HALIGN_TYPE (ges_title_clip_halign_get_type())
|
|
|
|
struct _GESTitleClipPrivate
|
|
{
|
|
gchar *text;
|
|
gchar *font_desc;
|
|
GESTextHAlign halign;
|
|
GESTextVAlign valign;
|
|
GSList *track_titles;
|
|
guint32 color;
|
|
guint32 background;
|
|
gdouble xpos;
|
|
gdouble ypos;
|
|
};
|
|
|
|
enum
|
|
{
|
|
PROP_0,
|
|
PROP_TEXT,
|
|
PROP_FONT_DESC,
|
|
PROP_HALIGNMENT,
|
|
PROP_VALIGNMENT,
|
|
PROP_COLOR,
|
|
PROP_BACKGROUND,
|
|
PROP_XPOS,
|
|
PROP_YPOS,
|
|
};
|
|
|
|
static GESTrackElement
|
|
* ges_title_clip_create_track_element (GESClip * clip, GESTrackType type);
|
|
|
|
static void _child_added (GESContainer * container,
|
|
GESTimelineElement * element);
|
|
static void _child_removed (GESContainer * container,
|
|
GESTimelineElement * element);
|
|
|
|
static void
|
|
ges_title_clip_get_property (GObject * object, guint property_id,
|
|
GValue * value, GParamSpec * pspec)
|
|
{
|
|
GESTitleClipPrivate *priv = GES_TITLE_CLIP (object)->priv;
|
|
|
|
switch (property_id) {
|
|
case PROP_TEXT:
|
|
g_value_set_string (value, priv->text);
|
|
break;
|
|
case PROP_FONT_DESC:
|
|
g_value_set_string (value, priv->font_desc);
|
|
break;
|
|
case PROP_HALIGNMENT:
|
|
g_value_set_enum (value, priv->halign);
|
|
break;
|
|
case PROP_VALIGNMENT:
|
|
g_value_set_enum (value, priv->valign);
|
|
break;
|
|
case PROP_COLOR:
|
|
g_value_set_uint (value, priv->color);
|
|
break;
|
|
case PROP_BACKGROUND:
|
|
g_value_set_uint (value, priv->background);
|
|
break;
|
|
case PROP_XPOS:
|
|
g_value_set_double (value, priv->xpos);
|
|
break;
|
|
case PROP_YPOS:
|
|
g_value_set_double (value, priv->ypos);
|
|
break;
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
}
|
|
}
|
|
|
|
static void
|
|
ges_title_clip_set_property (GObject * object, guint property_id,
|
|
const GValue * value, GParamSpec * pspec)
|
|
{
|
|
GESTitleClip *uriclip = GES_TITLE_CLIP (object);
|
|
|
|
switch (property_id) {
|
|
case PROP_TEXT:
|
|
ges_title_clip_set_text (uriclip, g_value_get_string (value));
|
|
break;
|
|
case PROP_FONT_DESC:
|
|
ges_title_clip_set_font_desc (uriclip, g_value_get_string (value));
|
|
break;
|
|
case PROP_HALIGNMENT:
|
|
ges_title_clip_set_halignment (uriclip, g_value_get_enum (value));
|
|
break;
|
|
case PROP_VALIGNMENT:
|
|
ges_title_clip_set_valignment (uriclip, g_value_get_enum (value));
|
|
break;
|
|
case PROP_COLOR:
|
|
ges_title_clip_set_color (uriclip, g_value_get_uint (value));
|
|
break;
|
|
case PROP_BACKGROUND:
|
|
ges_title_clip_set_background (uriclip, g_value_get_uint (value));
|
|
break;
|
|
case PROP_XPOS:
|
|
ges_title_clip_set_xpos (uriclip, g_value_get_double (value));
|
|
break;
|
|
case PROP_YPOS:
|
|
ges_title_clip_set_ypos (uriclip, g_value_get_double (value));
|
|
break;
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
}
|
|
}
|
|
|
|
static void
|
|
ges_title_clip_dispose (GObject * object)
|
|
{
|
|
GESTitleClip *self = GES_TITLE_CLIP (object);
|
|
|
|
if (self->priv->text)
|
|
g_free (self->priv->text);
|
|
if (self->priv->font_desc)
|
|
g_free (self->priv->font_desc);
|
|
|
|
G_OBJECT_CLASS (ges_title_clip_parent_class)->dispose (object);
|
|
}
|
|
|
|
static void
|
|
ges_title_clip_class_init (GESTitleClipClass * klass)
|
|
{
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
GESClipClass *timobj_class = GES_CLIP_CLASS (klass);
|
|
GESContainerClass *container_class = GES_CONTAINER_CLASS (klass);
|
|
|
|
g_type_class_add_private (klass, sizeof (GESTitleClipPrivate));
|
|
|
|
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;
|
|
|
|
/**
|
|
* GESTitleClip:text:
|
|
*
|
|
* The text to diplay
|
|
*/
|
|
g_object_class_install_property (object_class, PROP_TEXT,
|
|
g_param_spec_string ("text", "Text", "The text to display",
|
|
DEFAULT_TEXT, G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
|
|
|
/**
|
|
* GESTitleClip:font-desc:
|
|
*
|
|
* Pango font description string
|
|
*/
|
|
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 "
|
|
"for syntax.", DEFAULT_FONT_DESC,
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
|
|
|
|
/**
|
|
* GESTitleClip:valignment:
|
|
*
|
|
* Vertical alignent of the text
|
|
*/
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_VALIGNMENT,
|
|
g_param_spec_enum ("valignment", "vertical alignment",
|
|
"Vertical alignment of the text", GES_TEXT_VALIGN_TYPE,
|
|
DEFAULT_VALIGNMENT,
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
|
|
/**
|
|
* GESTitleClip:halignment:
|
|
*
|
|
* Horizontal alignment of the text
|
|
*/
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_HALIGNMENT,
|
|
g_param_spec_enum ("halignment", "horizontal alignment",
|
|
"Horizontal alignment of the text",
|
|
GES_TEXT_HALIGN_TYPE, DEFAULT_HALIGNMENT,
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS));
|
|
|
|
timobj_class->create_track_element = ges_title_clip_create_track_element;
|
|
|
|
container_class->child_added = _child_added;
|
|
container_class->child_removed = _child_removed;
|
|
|
|
/**
|
|
* GESTitleClip:color:
|
|
*
|
|
* The color of the text
|
|
*/
|
|
|
|
g_object_class_install_property (object_class, PROP_COLOR,
|
|
g_param_spec_uint ("color", "Color", "The color of the text",
|
|
0, G_MAXUINT32, G_MAXUINT32, G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
|
|
|
/**
|
|
* GESTitleClip:background:
|
|
*
|
|
* The background of the text
|
|
*/
|
|
|
|
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,
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
|
|
|
/**
|
|
* GESTitleClip:xpos:
|
|
*
|
|
* The horizontal position of the text
|
|
*/
|
|
|
|
g_object_class_install_property (object_class, PROP_XPOS,
|
|
g_param_spec_double ("xpos", "Xpos", "The horizontal position",
|
|
0, 1, 0.5, G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
|
|
|
/**
|
|
* GESTitleClip:ypos:
|
|
*
|
|
* The vertical position of the text
|
|
*/
|
|
|
|
g_object_class_install_property (object_class, PROP_YPOS,
|
|
g_param_spec_double ("ypos", "Ypos", "The vertical position",
|
|
0, 1, 0.5, G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
|
}
|
|
|
|
static void
|
|
ges_title_clip_init (GESTitleClip * self)
|
|
{
|
|
self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
|
|
GES_TYPE_TITLE_CLIP, GESTitleClipPrivate);
|
|
|
|
GES_TIMELINE_ELEMENT (self)->duration = 0;
|
|
/* Not 100% required since a new gobject's content will always be memzero'd */
|
|
self->priv->text = NULL;
|
|
self->priv->font_desc = NULL;
|
|
self->priv->halign = DEFAULT_HALIGNMENT;
|
|
self->priv->valign = DEFAULT_VALIGNMENT;
|
|
self->priv->color = G_MAXUINT32;
|
|
self->priv->background = G_MAXUINT32;
|
|
self->priv->xpos = 0.5;
|
|
self->priv->ypos = 0.5;
|
|
}
|
|
|
|
/**
|
|
* ges_title_clip_set_text:
|
|
* @self: the #GESTitleClip* to set text on
|
|
* @text: the text to render. an internal copy of this text will be
|
|
* made.
|
|
*
|
|
* Sets the text this clip will render.
|
|
*
|
|
*/
|
|
void
|
|
ges_title_clip_set_text (GESTitleClip * self, const gchar * text)
|
|
{
|
|
GSList *tmp;
|
|
|
|
GST_DEBUG_OBJECT (self, "text:%s", text);
|
|
|
|
if (self->priv->text)
|
|
g_free (self->priv->text);
|
|
|
|
self->priv->text = g_strdup (text);
|
|
|
|
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
|
|
ges_title_source_set_text (GES_TITLE_SOURCE (tmp->data), self->priv->text);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* ges_title_clip_set_font_desc:
|
|
* @self: the #GESTitleClip*
|
|
* @font_desc: the pango font description
|
|
*
|
|
* Sets the pango font description of the text.
|
|
*
|
|
*/
|
|
void
|
|
ges_title_clip_set_font_desc (GESTitleClip * self, const gchar * font_desc)
|
|
{
|
|
GSList *tmp;
|
|
|
|
GST_DEBUG_OBJECT (self, "font_desc:%s", font_desc);
|
|
|
|
if (self->priv->font_desc)
|
|
g_free (self->priv->font_desc);
|
|
|
|
self->priv->font_desc = g_strdup (font_desc);
|
|
|
|
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
|
|
ges_title_source_set_font_desc (GES_TITLE_SOURCE (tmp->data),
|
|
self->priv->font_desc);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* ges_title_clip_set_halignment:
|
|
* @self: the #GESTitleClip* to set horizontal alignement of text on
|
|
* @halign: #GESTextHAlign
|
|
*
|
|
* Sets the horizontal aligment of the text.
|
|
*
|
|
*/
|
|
void
|
|
ges_title_clip_set_halignment (GESTitleClip * self, GESTextHAlign halign)
|
|
{
|
|
GSList *tmp;
|
|
|
|
GST_DEBUG_OBJECT (self, "halign:%d", halign);
|
|
|
|
self->priv->halign = halign;
|
|
|
|
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
|
|
ges_title_source_set_halignment (GES_TITLE_SOURCE (tmp->data),
|
|
self->priv->halign);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* ges_title_clip_set_valignment:
|
|
* @self: the #GESTitleClip* to set vertical alignement of text on
|
|
* @valign: #GESTextVAlign
|
|
*
|
|
* Sets the vertical aligment of the text.
|
|
*
|
|
*/
|
|
void
|
|
ges_title_clip_set_valignment (GESTitleClip * self, GESTextVAlign valign)
|
|
{
|
|
GSList *tmp;
|
|
|
|
GST_DEBUG_OBJECT (self, "valign:%d", valign);
|
|
|
|
self->priv->valign = valign;
|
|
|
|
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
|
|
ges_title_source_set_valignment (GES_TITLE_SOURCE (tmp->data),
|
|
self->priv->valign);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* ges_title_clip_set_color:
|
|
* @self: the #GESTitleClip* to set
|
|
* @color: The color @self is being set to
|
|
*
|
|
* Sets the color of the text.
|
|
*/
|
|
void
|
|
ges_title_clip_set_color (GESTitleClip * self, guint32 color)
|
|
{
|
|
GSList *tmp;
|
|
|
|
GST_DEBUG_OBJECT (self, "color:%d", color);
|
|
|
|
self->priv->color = color;
|
|
|
|
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
|
|
ges_title_source_set_text_color (GES_TITLE_SOURCE (tmp->data),
|
|
self->priv->color);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* ges_title_clip_set_background:
|
|
* @self: the #GESTitleClip* to set
|
|
* @background: The color @self is being set to
|
|
*
|
|
* Sets the background of the text.
|
|
*/
|
|
void
|
|
ges_title_clip_set_background (GESTitleClip * self, guint32 background)
|
|
{
|
|
GSList *tmp;
|
|
|
|
GST_DEBUG_OBJECT (self, "background:%d", background);
|
|
|
|
self->priv->background = background;
|
|
|
|
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
|
|
ges_title_source_set_background_color (GES_TITLE_SOURCE (tmp->data),
|
|
self->priv->background);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* ges_title_clip_set_xpos:
|
|
* @self: the #GESTitleClip* to set
|
|
* @position: The horizontal position @self is being set to
|
|
*
|
|
* Sets the horizontal position of the text.
|
|
*/
|
|
void
|
|
ges_title_clip_set_xpos (GESTitleClip * self, gdouble position)
|
|
{
|
|
GSList *tmp;
|
|
|
|
GST_DEBUG_OBJECT (self, "xpos:%f", position);
|
|
|
|
self->priv->xpos = position;
|
|
|
|
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
|
|
ges_title_source_set_xpos (GES_TITLE_SOURCE (tmp->data), self->priv->xpos);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* ges_title_clip_set_ypos:
|
|
* @self: the #GESTitleClip* to set
|
|
* @position: The vertical position @self is being set to
|
|
*
|
|
* Sets the vertical position of the text.
|
|
*/
|
|
void
|
|
ges_title_clip_set_ypos (GESTitleClip * self, gdouble position)
|
|
{
|
|
GSList *tmp;
|
|
|
|
GST_DEBUG_OBJECT (self, "ypos:%f", position);
|
|
|
|
self->priv->ypos = position;
|
|
|
|
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
|
|
ges_title_source_set_ypos (GES_TITLE_SOURCE (tmp->data), self->priv->ypos);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* ges_title_clip_get_text:
|
|
* @self: a #GESTitleClip
|
|
*
|
|
* Get the text currently set on @self.
|
|
*
|
|
* Returns: The text currently set on @self.
|
|
*
|
|
*/
|
|
const gchar *
|
|
ges_title_clip_get_text (GESTitleClip * self)
|
|
{
|
|
return self->priv->text;
|
|
}
|
|
|
|
/**
|
|
* ges_title_clip_get_font_desc:
|
|
* @self: a #GESTitleClip
|
|
*
|
|
* Get the pango font description used by @self.
|
|
*
|
|
* Returns: The pango font description used by @self.
|
|
*
|
|
*/
|
|
const char *
|
|
ges_title_clip_get_font_desc (GESTitleClip * self)
|
|
{
|
|
return self->priv->font_desc;
|
|
}
|
|
|
|
/**
|
|
* ges_title_clip_get_halignment:
|
|
* @self: a #GESTitleClip
|
|
*
|
|
* Get the horizontal aligment used by @self.
|
|
*
|
|
* Returns: The horizontal aligment used by @self.
|
|
*
|
|
*/
|
|
GESTextHAlign
|
|
ges_title_clip_get_halignment (GESTitleClip * self)
|
|
{
|
|
return self->priv->halign;
|
|
}
|
|
|
|
/**
|
|
* ges_title_clip_get_valignment:
|
|
* @self: a #GESTitleClip
|
|
*
|
|
* Get the vertical aligment used by @self.
|
|
*
|
|
* Returns: The vertical aligment used by @self.
|
|
*
|
|
*/
|
|
GESTextVAlign
|
|
ges_title_clip_get_valignment (GESTitleClip * self)
|
|
{
|
|
return self->priv->valign;
|
|
}
|
|
|
|
/**
|
|
* ges_title_clip_get_text_color:
|
|
* @self: a #GESTitleClip
|
|
*
|
|
* Get the color used by @self.
|
|
*
|
|
* Returns: The color used by @self.
|
|
*/
|
|
const guint32
|
|
ges_title_clip_get_text_color (GESTitleClip * self)
|
|
{
|
|
return self->priv->color;
|
|
}
|
|
|
|
/**
|
|
* ges_title_clip_get_background_color:
|
|
* @self: a #GESTitleClip
|
|
*
|
|
* Get the background used by @self.
|
|
*
|
|
* Returns: The color used by @self.
|
|
*/
|
|
const guint32
|
|
ges_title_clip_get_background_color (GESTitleClip * self)
|
|
{
|
|
return self->priv->background;
|
|
}
|
|
|
|
/**
|
|
* ges_title_clip_get_xpos:
|
|
* @self: a #GESTitleClip
|
|
*
|
|
* Get the horizontal position used by @self.
|
|
*
|
|
* Returns: The horizontal position used by @self.
|
|
*/
|
|
const gdouble
|
|
ges_title_clip_get_xpos (GESTitleClip * self)
|
|
{
|
|
return self->priv->xpos;
|
|
}
|
|
|
|
/**
|
|
* ges_title_clip_get_ypos:
|
|
* @self: a #GESTitleClip
|
|
*
|
|
* Get the vertical position used by @self.
|
|
*
|
|
* Returns: The vertical position used by @self.
|
|
*/
|
|
const gdouble
|
|
ges_title_clip_get_ypos (GESTitleClip * self)
|
|
{
|
|
return self->priv->ypos;
|
|
}
|
|
|
|
static void
|
|
_child_removed (GESContainer * container, GESTimelineElement * element)
|
|
{
|
|
GESTitleClipPrivate *priv = GES_TITLE_CLIP (container)->priv;
|
|
|
|
/* 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);
|
|
gst_object_unref (element);
|
|
}
|
|
}
|
|
|
|
static void
|
|
_child_added (GESContainer * container, GESTimelineElement * element)
|
|
{
|
|
GESTitleClipPrivate *priv = GES_TITLE_CLIP (container)->priv;
|
|
|
|
if (GES_IS_TITLE_SOURCE (element)) {
|
|
GST_DEBUG_OBJECT (container, "%" GST_PTR_FORMAT " added", element);
|
|
priv->track_titles = g_slist_prepend (priv->track_titles,
|
|
gst_object_ref (element));
|
|
}
|
|
}
|
|
|
|
static GESTrackElement *
|
|
ges_title_clip_create_track_element (GESClip * clip, GESTrackType type)
|
|
{
|
|
|
|
GESTitleClipPrivate *priv = GES_TITLE_CLIP (clip)->priv;
|
|
GESTrackElement *res = NULL;
|
|
|
|
GST_DEBUG_OBJECT (clip, "a GESTitleSource");
|
|
|
|
if (type == GES_TRACK_TYPE_VIDEO) {
|
|
res = (GESTrackElement *) ges_title_source_new ();
|
|
GST_DEBUG_OBJECT (clip, "text property");
|
|
ges_title_source_set_text ((GESTitleSource *) res, priv->text);
|
|
ges_title_source_set_font_desc ((GESTitleSource *) res, priv->font_desc);
|
|
ges_title_source_set_halignment ((GESTitleSource *) res, priv->halign);
|
|
ges_title_source_set_valignment ((GESTitleSource *) res, priv->valign);
|
|
ges_title_source_set_text_color ((GESTitleSource *) res, priv->color);
|
|
ges_title_source_set_background_color ((GESTitleSource *) res,
|
|
priv->background);
|
|
ges_title_source_set_xpos ((GESTitleSource *) res, priv->xpos);
|
|
ges_title_source_set_ypos ((GESTitleSource *) res, priv->ypos);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
/**
|
|
* ges_title_clip_new:
|
|
*
|
|
* Creates a new #GESTitleClip
|
|
*
|
|
* Returns: The newly created #GESTitleClip, or NULL if there was an
|
|
* error.
|
|
*/
|
|
GESTitleClip *
|
|
ges_title_clip_new (void)
|
|
{
|
|
GESTitleClip *new_clip;
|
|
GESAsset *asset = ges_asset_request (GES_TYPE_TITLE_CLIP, NULL, NULL);
|
|
|
|
new_clip = GES_TITLE_CLIP (ges_asset_extract (asset, NULL));
|
|
gst_object_unref (asset);
|
|
|
|
return new_clip;
|
|
}
|