gstreamer/ges/ges-title-source.c

609 lines
17 KiB
C
Raw Normal View History

2010-06-14 13:34:08 +00:00
/* GStreamer Editing Services
2010-06-30 15:02:10 +00:00
* Copyright (C) 2010 Brandon Lewis <brandon.lewis@collabora.co.uk>
* 2010 Nokia Corporation
2010-06-14 13:34:08 +00:00
*
* 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 13:34:08 +00:00
*/
/**
* SECTION:gestitlesource
2010-07-01 14:48:45 +00:00
* @short_description: render stand-alone text titles
*
* #GESTitleSource is a GESTimelineElement that implements the notion
* of titles in GES.
*
* <refsect1 id="GESTileSource.children_properties" role="properties">
* <title role="children_properties.title">Children Properties</title>
* <para>You can use the following children properties through the
* #ges_track_element_set_child_property and alike set of methods:</para>
* <informaltable frame="none">
* <tgroup cols="3">
* <colspec colname="properties_type" colwidth="150px"/>
* <colspec colname="properties_name" colwidth="200px"/>
* <colspec colname="properties_flags" colwidth="400px"/>
* <tbody>
* <row>
* <entry role="property_type"><link linkend="guint"><type>guint</type></link></entry>
* <entry role="property_name"><link linkend="GESTileSource--background">background</link></entry>
* <entry>The color of the background</entry>
* </row>
* <row>
* <entry role="property_type"><link linkend="guint"><type>guint</type></link></entry>
* <entry role="property_name"><link linkend="GESTileSource--color">color</link></entry>
* <entry>The color of the text</entry>
* </row>
* <row>
* <entry role="property_type"><link linkend="gchar"><type>gchar</type></link></entry>
* <entry role="property_name"><link linkend="GESTileSource--font-desc">font-desc</link></entry>
* <entry>Pango font description string</entry>
* </row>
* <row>
* <entry role="property_type"><link linkend="GESTextHAlign"><type>GESTextHAlign</type></link></entry>
* <entry role="property_name"><link linkend="GESTileSource--halignment">halignment</link></entry>
* <entry>Horizontal alignment of the text</entry>
* </row>
* <row>
* <entry role="property_type"><link linkend="gchar"><type>gchar</type></link></entry>
* <entry role="property_name"><link linkend="GESTileSource--text">text</link></entry>
* <entry>The text to be rendered</entry>
* </row>
* <row>
* <entry role="property_type"><link linkend="GESTextVAlign"><type>GESTextVAlign</type></link>
* </entry><entry role="property_name"><link linkend="GESTileSource--valignment">valignment</link>
* </entry><entry>Vertical alignent of the text</entry>
* </row>
* <row>
* <entry role="property_type"><link linkend="gdouble"><type>gdouble</type></link></entry>
* <entry role="property_name"><link linkend="GESTileSource--xpos">xpos</link></entry>
* <entry>The horizontal position of the text</entry>
* </row>
* <row><entry role="property_type"><link linkend="gdouble"><type>gdouble</type></link></entry>
* <entry role="property_name"><link linkend="GESTileSource--ypos">ypos</link></entry>
* <entry>The vertical position of the text</entry>
* </row>
* <row><entry role="property_type"><link linkend="gboolean"><type>gboolean</type></link></entry>
* <entry role="property_name"><link linkend="GESTileSource--shaded-background">shaded-background</link></entry>
* <entry>Whether to shade the background under the text area</entry>
* </row>
* <row><entry role="property_type"><link linkend="guint"><type>guint</type></link></entry>
* <entry role="property_name"><link linkend="GESTileSource--outline-color">outline-color</link></entry>
* <entry>Color to use for outline the text (big-endian ARGB).</entry>
* </row>
* </tbody>
* </tgroup>
* </informaltable>
* </refsect1>
2010-06-14 13:34:08 +00:00
*/
#include "ges-internal.h"
#include "ges-track-element.h"
#include "ges-title-source.h"
#include "ges-video-test-source.h"
2010-06-14 13:34:08 +00:00
#define DEFAULT_TEXT ""
#define DEFAULT_FONT_DESC "Serif 36"
G_DEFINE_TYPE (GESTitleSource, ges_title_source, GES_TYPE_VIDEO_SOURCE);
2010-06-14 13:34:08 +00:00
struct _GESTitleSourcePrivate
2010-12-04 18:54:13 +00:00
{
gchar *text;
gchar *font_desc;
GESTextHAlign halign;
GESTextVAlign valign;
guint32 color;
guint32 background;
gdouble xabsolute;
gdouble yabsolute;
GstElement *text_el;
GstElement *background_el;
2010-12-04 18:54:13 +00:00
};
2010-06-30 15:02:10 +00:00
enum
{
PROP_0,
};
2010-06-14 13:34:08 +00:00
static void ges_title_source_dispose (GObject * object);
2010-06-14 13:34:08 +00:00
static void ges_title_source_get_property (GObject * object, guint
2010-06-30 15:02:10 +00:00
property_id, GValue * value, GParamSpec * pspec);
2010-06-14 13:34:08 +00:00
static void ges_title_source_set_property (GObject * object, guint
2010-06-30 15:02:10 +00:00
property_id, const GValue * value, GParamSpec * pspec);
2010-06-14 13:34:08 +00:00
static GstElement *ges_title_source_create_source (GESTrackElement * self);
2010-06-14 13:34:08 +00:00
static gboolean
_lookup_child (GESTrackElement * object,
const gchar * prop_name, GstElement ** element, GParamSpec ** pspec)
{
gboolean res;
gchar *clean_name;
if (!g_strcmp0 (prop_name, "background"))
clean_name = g_strdup ("foreground-color");
else if (!g_strcmp0 (prop_name, "GstTextOverlay:background"))
clean_name = g_strdup ("foreground-color");
else
clean_name = g_strdup (prop_name);
res =
GES_TRACK_ELEMENT_CLASS (ges_title_source_parent_class)->lookup_child
(object, clean_name, element, pspec);
g_free (clean_name);
return res;
}
2010-06-14 13:34:08 +00:00
static void
ges_title_source_class_init (GESTitleSourceClass * klass)
2010-06-14 13:34:08 +00:00
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
GESVideoSourceClass *source_class = GES_VIDEO_SOURCE_CLASS (klass);
GESTrackElementClass *track_element_class = GES_TRACK_ELEMENT_CLASS (klass);
2010-06-14 13:34:08 +00:00
g_type_class_add_private (klass, sizeof (GESTitleSourcePrivate));
2010-12-04 18:54:13 +00:00
object_class->get_property = ges_title_source_get_property;
object_class->set_property = ges_title_source_set_property;
object_class->dispose = ges_title_source_dispose;
track_element_class->lookup_child = _lookup_child;
2010-06-30 15:02:10 +00:00
source_class->create_source = ges_title_source_create_source;
2010-06-30 15:02:10 +00:00
}
static void
ges_title_source_init (GESTitleSource * self)
2010-06-30 15:02:10 +00:00
{
2010-12-04 18:54:13 +00:00
self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
GES_TYPE_TITLE_SOURCE, GESTitleSourcePrivate);
2010-12-04 18:54:13 +00:00
self->priv->text = g_strdup (DEFAULT_TEXT);
self->priv->font_desc = g_strdup (DEFAULT_FONT_DESC);
self->priv->text_el = NULL;
self->priv->halign = DEFAULT_HALIGNMENT;
self->priv->valign = DEFAULT_VALIGNMENT;
self->priv->color = G_MAXUINT32;
self->priv->background = G_MAXUINT32;
self->priv->xabsolute = 0.5;
self->priv->yabsolute = 0.5;
self->priv->background_el = NULL;
2010-06-14 13:34:08 +00:00
}
static void
ges_title_source_dispose (GObject * object)
2010-06-14 13:34:08 +00:00
{
GESTitleSource *self = GES_TITLE_SOURCE (object);
if (self->priv->text) {
g_free (self->priv->text);
2010-06-30 15:02:10 +00:00
}
if (self->priv->font_desc) {
g_free (self->priv->font_desc);
2010-06-30 15:02:10 +00:00
}
if (self->priv->text_el) {
gst_object_unref (self->priv->text_el);
self->priv->text_el = NULL;
2010-06-30 15:02:10 +00:00
}
if (self->priv->background_el) {
gst_object_unref (self->priv->background_el);
self->priv->background_el = NULL;
2010-06-30 15:02:10 +00:00
}
G_OBJECT_CLASS (ges_title_source_parent_class)->dispose (object);
2010-06-14 13:34:08 +00:00
}
static void
ges_title_source_get_property (GObject * object,
2010-06-30 15:02:10 +00:00
guint property_id, GValue * value, GParamSpec * pspec)
2010-06-14 13:34:08 +00:00
{
switch (property_id) {
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
}
}
static void
ges_title_source_set_property (GObject * object,
2010-06-30 15:02:10 +00:00
guint property_id, const GValue * value, GParamSpec * pspec)
2010-06-14 13:34:08 +00:00
{
switch (property_id) {
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
}
}
2010-06-30 15:02:10 +00:00
static GstElement *
ges_title_source_create_source (GESTrackElement * object)
2010-06-14 13:34:08 +00:00
{
GstElement *topbin, *background, *text;
GstPad *src, *pad;
2010-06-30 15:02:10 +00:00
GESTitleSource *self = GES_TITLE_SOURCE (object);
GESTitleSourcePrivate *priv = self->priv;
const gchar *bg_props[] = { "pattern", "foreground-color", NULL };
const gchar *text_props[] = { "text", "font-desc", "valignment", "halignment",
"color", "x-absolute", "y-absolute", "outline-color", "shaded-background",
"text-x", "text-y", "text-width", "text-height", NULL
};
2010-06-30 15:02:10 +00:00
topbin = gst_bin_new ("titlesrc-bin");
background = gst_element_factory_make ("videotestsrc", "titlesrc-bg");
text = gst_element_factory_make ("textoverlay", "titlsrc-text");
if (priv->text) {
g_object_set (text, "text", priv->text, NULL);
2010-06-30 15:02:10 +00:00
}
if (priv->font_desc) {
g_object_set (text, "font-desc", priv->font_desc, NULL);
2010-06-30 15:02:10 +00:00
}
g_object_set (text, "valignment", (gint) priv->valign, "halignment",
(gint) priv->halign, NULL);
g_object_set (text, "color", (guint) self->priv->color, NULL);
g_object_set (text, "x-absolute", (gdouble) self->priv->xabsolute, NULL);
g_object_set (text, "y-absolute", (gdouble) self->priv->yabsolute, NULL);
2010-06-30 15:02:10 +00:00
g_object_set (background, "pattern", (gint) GES_VIDEO_TEST_PATTERN_SOLID,
NULL);
g_object_set (background, "foreground-color", (guint) self->priv->background,
2010-06-30 15:02:10 +00:00
NULL);
gst_bin_add_many (GST_BIN (topbin), background, text, NULL);
2010-06-30 15:02:10 +00:00
gst_element_link_pads_full (background, "src", text, "video_sink",
2010-07-14 11:29:23 +00:00
GST_PAD_LINK_CHECK_NOTHING);
2010-06-30 15:02:10 +00:00
pad = gst_element_get_static_pad (text, "src");
src = gst_ghost_pad_new ("src", pad);
gst_object_unref (pad);
2010-06-30 15:02:10 +00:00
gst_element_add_pad (topbin, src);
gst_object_ref (text);
gst_object_ref (background);
2010-06-30 15:02:10 +00:00
priv->text_el = text;
priv->background_el = background;
2010-06-30 15:02:10 +00:00
ges_track_element_add_children_props (object, text, NULL, NULL, text_props);
ges_track_element_add_children_props (object, background, NULL, NULL,
bg_props);
2010-06-30 15:02:10 +00:00
return topbin;
2010-06-14 13:34:08 +00:00
}
2010-06-30 15:02:10 +00:00
/**
* ges_title_source_set_text:
* @self: the #GESTitleSource* to set text on
2010-06-30 15:02:10 +00:00
* @text: the text to render. an internal copy of this text will be
* made.
*
* Sets the text this track element will render.
*
* Deprecated: use ges_track_element_get/set_children_properties on the
* GESTrackElement instead
2010-06-30 15:02:10 +00:00
*/
void
ges_title_source_set_text (GESTitleSource * self, const gchar * text)
2010-06-14 13:34:08 +00:00
{
if (self->priv->text)
g_free (self->priv->text);
2010-06-14 13:34:08 +00:00
GST_DEBUG ("self:%p, text:%s", self, text);
self->priv->text = g_strdup (text);
if (self->priv->text_el)
g_object_set (self->priv->text_el, "text", text, NULL);
2010-06-30 15:02:10 +00:00
}
2010-06-14 13:34:08 +00:00
2010-06-30 15:02:10 +00:00
/**
* ges_title_source_set_font_desc:
* @self: the #GESTitleSource
2010-06-30 15:02:10 +00:00
* @font_desc: the pango font description
*
* Set the pango font description this source will use to render
* the text.
2010-06-30 15:02:10 +00:00
*/
void
ges_title_source_set_font_desc (GESTitleSource * self, const gchar * font_desc)
2010-06-30 15:02:10 +00:00
{
if (self->priv->font_desc)
g_free (self->priv->font_desc);
2010-06-14 13:34:08 +00:00
GST_DEBUG ("self:%p, font_dec:%s", self, font_desc);
self->priv->font_desc = g_strdup (font_desc);
if (self->priv->text_el)
g_object_set (self->priv->text_el, "font-desc", font_desc, NULL);
2010-06-14 13:34:08 +00:00
}
2010-06-30 15:02:10 +00:00
/**
* ges_title_source_set_valignment:
* @self: the #GESTitleSource* to set text on
2010-07-02 10:25:58 +00:00
* @valign: #GESTextVAlign
2010-06-30 15:02:10 +00:00
*
* Sets the vertical aligment of the text.
*/
void
ges_title_source_set_valignment (GESTitleSource * self, GESTextVAlign valign)
2010-06-30 15:02:10 +00:00
{
GST_DEBUG ("self:%p, valign:%d", self, valign);
self->priv->valign = valign;
if (self->priv->text_el)
g_object_set (self->priv->text_el, "valignment", valign, NULL);
2010-06-30 15:02:10 +00:00
}
/**
* ges_title_source_set_halignment:
* @self: the #GESTitleSource* to set text on
2010-07-02 10:25:58 +00:00
* @halign: #GESTextHAlign
2010-06-30 15:02:10 +00:00
*
* Sets the vertical aligment of the text.
*/
void
ges_title_source_set_halignment (GESTitleSource * self, GESTextHAlign halign)
2010-06-14 13:34:08 +00:00
{
GST_DEBUG ("self:%p, halign:%d", self, halign);
self->priv->halign = halign;
if (self->priv->text_el)
g_object_set (self->priv->text_el, "halignment", halign, NULL);
}
/**
* ges_title_source_set_text_color:
* @self: the #GESTitleSource* to set
* @color: the color @self is being set to
*
* Sets the color of the text.
*/
void
ges_title_source_set_text_color (GESTitleSource * self, guint32 color)
{
GST_DEBUG ("self:%p, color:%d", self, color);
self->priv->color = color;
if (self->priv->text_el)
g_object_set (self->priv->text_el, "color", color, NULL);
}
/**
* ges_title_source_set_background_color:
* @self: the #GESTitleSource* to set
* @color: the color @self is being set to
*
* Sets the color of the background
*/
void
ges_title_source_set_background_color (GESTitleSource * self, guint32 color)
{
GST_DEBUG ("self:%p, background color:%d", self, color);
self->priv->background = color;
if (self->priv->background_el)
g_object_set (self->priv->background_el, "foreground-color", color, NULL);
}
/**
* ges_title_source_set_xabsolute:
* @self: the #GESTitleSource* to set
* @position: the horizontal position @self is being set to
*
* Sets the horizontal position of the text.
*/
void
ges_title_source_set_xabsolute (GESTitleSource * self, gdouble position)
{
GST_DEBUG ("self:%p, x-absolute:%f", self, position);
self->priv->xabsolute = position;
if (self->priv->text_el)
g_object_set (self->priv->text_el, "x-absolute", position, NULL);
}
/**
* ges_title_source_set_yabsolute:
* @self: the #GESTitleSource* to set
* @position: the color @self is being set to
*
* Sets the vertical position of the text.
*/
void
ges_title_source_set_yabsolute (GESTitleSource * self, gdouble position)
{
GST_DEBUG ("self:%p, y-absolute:%f", self, position);
self->priv->yabsolute = position;
if (self->priv->text_el)
g_object_set (self->priv->text_el, "y-absolute", position, NULL);
}
/**
* ges_title_source_get_text:
* @source: a #GESTitleSource
*
* Get the text currently set on the @source.
*
* Returns: (transfer none): The text currently set on the @source.
*/
const gchar *
ges_title_source_get_text (GESTitleSource * source)
{
gchar *text;
ges_track_element_get_child_properties (GES_TRACK_ELEMENT (source), "text",
&text, NULL);
return text;
}
/**
* ges_title_source_get_font_desc:
* @source: a #GESTitleSource
*
* Get the pango font description used by @source.
*
* Returns: (transfer none): The pango font description used by this
* @source.
*/
const gchar *
ges_title_source_get_font_desc (GESTitleSource * source)
{
gchar *font_desc;
ges_track_element_get_child_properties (GES_TRACK_ELEMENT (source),
"font-desc", &font_desc, NULL);
return font_desc;
}
/**
* ges_title_source_get_halignment:
* @source: a #GESTitleSource
*
* Get the horizontal aligment used by @source.
*
* Returns: The horizontal aligment used by @source.
*/
GESTextHAlign
ges_title_source_get_halignment (GESTitleSource * source)
{
GESTextHAlign halign;
ges_track_element_get_child_properties (GES_TRACK_ELEMENT (source),
"halignment", &halign, NULL);
return halign;
2010-06-14 13:34:08 +00:00
}
/**
* ges_title_source_get_valignment:
* @source: a #GESTitleSource
*
* Get the vertical aligment used by @source.
*
* Returns: The vertical aligment used by @source.
*/
GESTextVAlign
ges_title_source_get_valignment (GESTitleSource * source)
{
GESTextVAlign valign;
ges_track_element_get_child_properties (GES_TRACK_ELEMENT (source),
"valignment", &valign, NULL);
return valign;
}
/**
* ges_title_source_get_text_color:
* @source: a #GESTitleSource
*
* Get the color used by @source.
*
* Returns: The color used by @source.
*/
const guint32
ges_title_source_get_text_color (GESTitleSource * source)
{
guint32 color;
ges_track_element_get_child_properties (GES_TRACK_ELEMENT (source), "color",
&color, NULL);
return color;
}
/**
* ges_title_source_get_background_color:
* @source: a #GESTitleSource
*
* Get the background used by @source.
*
* Returns: The background used by @source.
*/
const guint32
ges_title_source_get_background_color (GESTitleSource * source)
{
guint32 color;
ges_track_element_get_child_properties (GES_TRACK_ELEMENT (source),
"foreground-color", &color, NULL);
return color;
}
/**
* ges_title_source_get_xabsolute:
* @source: a #GESTitleSource
*
* Get the horizontal position used by @source.
*
* Returns: The horizontal position used by @source.
*/
const gdouble
ges_title_source_get_xabsolute (GESTitleSource * source)
{
gdouble xabsolute;
ges_track_element_get_child_properties (GES_TRACK_ELEMENT (source),
"x-absolute", &xabsolute, NULL);
return xabsolute;
}
/**
* ges_title_source_get_yabsolute:
* @source: a #GESTitleSource
*
* Get the vertical position used by @source.
*
* Returns: The vertical position used by @source.
*/
const gdouble
ges_title_source_get_yabsolute (GESTitleSource * source)
{
gdouble yabsolute;
ges_track_element_get_child_properties (GES_TRACK_ELEMENT (source),
"y-absolute", &yabsolute, NULL);
return yabsolute;
}
/**
* ges_title_source_new:
*
* Creates a new #GESTitleSource.
*
* Returns: The newly created #GESTitleSource, or %NULL if there was an
* error.
*/
GESTitleSource *
ges_title_source_new (void)
2010-06-14 13:34:08 +00:00
{
return g_object_new (GES_TYPE_TITLE_SOURCE, "track-type",
GES_TRACK_TYPE_VIDEO, NULL);
2010-06-14 13:34:08 +00:00
}