2010-06-23 14:30:18 +00:00
|
|
|
/* GStreamer Editing Services
|
|
|
|
* Copyright (C) 2010 Brandon Lewis <brandon.lewis@collabora.co.uk>
|
|
|
|
* 2010 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., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-07-01 14:48:45 +00:00
|
|
|
* SECTION:ges-track-text-overlay
|
|
|
|
* @short_description: render text onto another video stream in a
|
|
|
|
* #GESTimelineLayer
|
|
|
|
*
|
2010-06-23 14:30:18 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ges-internal.h"
|
|
|
|
#include "ges-track-object.h"
|
2010-06-30 15:02:10 +00:00
|
|
|
#include "ges-track-title-source.h"
|
2010-06-30 16:13:35 +00:00
|
|
|
#include "ges-track-text-overlay.h"
|
2010-06-23 14:30:18 +00:00
|
|
|
|
2010-06-30 16:13:35 +00:00
|
|
|
G_DEFINE_TYPE (GESTrackTextOverlay, ges_track_text_overlay,
|
2010-06-30 15:59:17 +00:00
|
|
|
GES_TYPE_TRACK_OPERATION);
|
2010-06-23 14:30:18 +00:00
|
|
|
|
2010-12-04 18:54:13 +00:00
|
|
|
struct _GESTrackTextOverlayPrivate
|
|
|
|
{
|
2011-01-06 14:35:42 +00:00
|
|
|
gchar *text;
|
|
|
|
gchar *font_desc;
|
|
|
|
GESTextHAlign halign;
|
|
|
|
GESTextVAlign valign;
|
|
|
|
GstElement *text_el;
|
2010-12-04 18:54:13 +00:00
|
|
|
};
|
|
|
|
|
2010-06-23 14:30:18 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
};
|
|
|
|
|
2010-06-30 16:13:35 +00:00
|
|
|
static void ges_track_text_overlay_dispose (GObject * object);
|
2010-06-23 14:30:18 +00:00
|
|
|
|
2010-06-30 16:13:35 +00:00
|
|
|
static void ges_track_text_overlay_finalize (GObject * object);
|
2010-06-23 14:30:18 +00:00
|
|
|
|
2010-06-30 16:13:35 +00:00
|
|
|
static void ges_track_text_overlay_get_property (GObject * object, guint
|
2010-06-23 14:30:18 +00:00
|
|
|
property_id, GValue * value, GParamSpec * pspec);
|
|
|
|
|
2010-06-30 16:13:35 +00:00
|
|
|
static void ges_track_text_overlay_set_property (GObject * object, guint
|
2010-06-23 14:30:18 +00:00
|
|
|
property_id, const GValue * value, GParamSpec * pspec);
|
|
|
|
|
2010-12-10 11:15:54 +00:00
|
|
|
static GstElement *ges_track_text_overlay_create_element (GESTrackObject
|
2010-06-23 14:30:18 +00:00
|
|
|
* self);
|
|
|
|
|
|
|
|
static void
|
2010-06-30 16:13:35 +00:00
|
|
|
ges_track_text_overlay_class_init (GESTrackTextOverlayClass * klass)
|
2010-06-23 14:30:18 +00:00
|
|
|
{
|
2010-12-10 11:15:54 +00:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
GESTrackObjectClass *bg_class = GES_TRACK_OBJECT_CLASS (klass);
|
2010-06-23 14:30:18 +00:00
|
|
|
|
2010-12-04 18:54:13 +00:00
|
|
|
g_type_class_add_private (klass, sizeof (GESTrackTextOverlayPrivate));
|
|
|
|
|
2010-06-30 16:13:35 +00:00
|
|
|
object_class->get_property = ges_track_text_overlay_get_property;
|
|
|
|
object_class->set_property = ges_track_text_overlay_set_property;
|
|
|
|
object_class->dispose = ges_track_text_overlay_dispose;
|
|
|
|
object_class->finalize = ges_track_text_overlay_finalize;
|
2010-06-23 14:30:18 +00:00
|
|
|
|
2010-06-30 16:13:35 +00:00
|
|
|
bg_class->create_element = ges_track_text_overlay_create_element;
|
2010-06-23 14:30:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-06-30 16:13:35 +00:00
|
|
|
ges_track_text_overlay_init (GESTrackTextOverlay * self)
|
2010-06-23 14:30:18 +00:00
|
|
|
{
|
2010-12-04 18:54:13 +00:00
|
|
|
self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
|
|
|
|
GES_TYPE_TRACK_TEXT_OVERLAY, GESTrackTextOverlayPrivate);
|
|
|
|
|
2011-01-06 14:35:42 +00:00
|
|
|
self->priv->text = NULL;
|
|
|
|
self->priv->font_desc = NULL;
|
|
|
|
self->priv->text_el = NULL;
|
|
|
|
self->priv->halign = DEFAULT_HALIGNMENT;
|
|
|
|
self->priv->valign = DEFAULT_VALIGNMENT;
|
2010-06-23 14:30:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-06-30 16:13:35 +00:00
|
|
|
ges_track_text_overlay_dispose (GObject * object)
|
2010-06-23 14:30:18 +00:00
|
|
|
{
|
2010-06-30 16:13:35 +00:00
|
|
|
GESTrackTextOverlay *self = GES_TRACK_TEXT_OVERLAY (object);
|
2011-01-06 14:35:42 +00:00
|
|
|
if (self->priv->text) {
|
|
|
|
g_free (self->priv->text);
|
2010-06-23 14:30:18 +00:00
|
|
|
}
|
|
|
|
|
2011-01-06 14:35:42 +00:00
|
|
|
if (self->priv->font_desc) {
|
|
|
|
g_free (self->priv->font_desc);
|
2010-06-23 14:30:18 +00:00
|
|
|
}
|
|
|
|
|
2011-01-06 14:35:42 +00:00
|
|
|
if (self->priv->text_el) {
|
|
|
|
g_object_unref (self->priv->text_el);
|
|
|
|
self->priv->text_el = NULL;
|
2010-06-23 14:30:18 +00:00
|
|
|
}
|
|
|
|
|
2010-06-30 16:13:35 +00:00
|
|
|
G_OBJECT_CLASS (ges_track_text_overlay_parent_class)->dispose (object);
|
2010-06-23 14:30:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-06-30 16:13:35 +00:00
|
|
|
ges_track_text_overlay_finalize (GObject * object)
|
2010-06-23 14:30:18 +00:00
|
|
|
{
|
2010-06-30 16:13:35 +00:00
|
|
|
G_OBJECT_CLASS (ges_track_text_overlay_parent_class)->finalize (object);
|
2010-06-23 14:30:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-06-30 16:13:35 +00:00
|
|
|
ges_track_text_overlay_get_property (GObject * object,
|
2010-06-23 14:30:18 +00:00
|
|
|
guint property_id, GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
switch (property_id) {
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-06-30 16:13:35 +00:00
|
|
|
ges_track_text_overlay_set_property (GObject * object,
|
2010-06-23 14:30:18 +00:00
|
|
|
guint property_id, const GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
|
|
|
switch (property_id) {
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstElement *
|
2010-12-10 11:15:54 +00:00
|
|
|
ges_track_text_overlay_create_element (GESTrackObject * object)
|
2010-06-23 14:30:18 +00:00
|
|
|
{
|
2010-07-14 11:18:57 +00:00
|
|
|
GstElement *ret, *text, *iconv, *oconv;
|
2010-06-25 10:04:47 +00:00
|
|
|
GstPad *src_target, *sink_target;
|
2010-06-23 16:23:31 +00:00
|
|
|
GstPad *src, *sink;
|
2010-06-30 16:13:35 +00:00
|
|
|
GESTrackTextOverlay *self = GES_TRACK_TEXT_OVERLAY (object);
|
2010-06-23 16:23:31 +00:00
|
|
|
|
|
|
|
text = gst_element_factory_make ("textoverlay", NULL);
|
2010-07-14 11:18:57 +00:00
|
|
|
iconv = gst_element_factory_make ("ffmpegcolorspace", NULL);
|
|
|
|
oconv = gst_element_factory_make ("ffmpegcolorspace", NULL);
|
2011-01-06 14:35:42 +00:00
|
|
|
self->priv->text_el = text;
|
2010-06-23 16:23:31 +00:00
|
|
|
g_object_ref (text);
|
|
|
|
|
2011-01-06 14:35:42 +00:00
|
|
|
if (self->priv->text)
|
|
|
|
g_object_set (text, "text", (gchar *) self->priv->text, NULL);
|
|
|
|
if (self->priv->font_desc)
|
|
|
|
g_object_set (text, "font-desc", (gchar *) self->priv->font_desc, NULL);
|
2010-06-23 16:23:31 +00:00
|
|
|
|
2011-01-06 14:35:42 +00:00
|
|
|
g_object_set (text, "halignment", (gint) self->priv->halign, "valignment",
|
|
|
|
(gint) self->priv->valign, NULL);
|
2010-06-23 16:23:31 +00:00
|
|
|
|
|
|
|
ret = gst_bin_new ("overlay-bin");
|
2010-07-14 11:18:57 +00:00
|
|
|
gst_bin_add_many (GST_BIN (ret), text, iconv, oconv, NULL);
|
|
|
|
gst_element_link_many (iconv, text, oconv, NULL);
|
2010-06-23 16:23:31 +00:00
|
|
|
|
2010-07-14 11:18:57 +00:00
|
|
|
src_target = gst_element_get_static_pad (oconv, "src");
|
|
|
|
sink_target = gst_element_get_static_pad (iconv, "sink");
|
2010-06-25 10:04:47 +00:00
|
|
|
|
|
|
|
src = gst_ghost_pad_new ("src", src_target);
|
|
|
|
sink = gst_ghost_pad_new ("video_sink", sink_target);
|
|
|
|
g_object_unref (src_target);
|
|
|
|
g_object_unref (sink_target);
|
2010-06-23 16:23:31 +00:00
|
|
|
|
|
|
|
gst_element_add_pad (ret, src);
|
|
|
|
gst_element_add_pad (ret, sink);
|
2010-06-23 14:30:18 +00:00
|
|
|
|
2010-06-23 16:23:31 +00:00
|
|
|
return ret;
|
2010-06-23 14:30:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-06-30 16:13:35 +00:00
|
|
|
* ges_track_text_overlay_set_text:
|
|
|
|
* @self: the #GESTrackTextOverlay* to set text on
|
2010-06-23 14:30:18 +00:00
|
|
|
* @text: the text to render. an internal copy of this text will be
|
|
|
|
* made.
|
2011-01-06 14:35:42 +00:00
|
|
|
*
|
2010-06-23 14:30:18 +00:00
|
|
|
* Sets the text this track object will render.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void
|
2010-06-30 16:13:35 +00:00
|
|
|
ges_track_text_overlay_set_text (GESTrackTextOverlay * self, const gchar * text)
|
2010-06-23 14:30:18 +00:00
|
|
|
{
|
2011-01-06 14:35:42 +00:00
|
|
|
if (self->priv->text)
|
|
|
|
g_free (self->priv->text);
|
2010-06-23 14:30:18 +00:00
|
|
|
|
2011-01-06 14:35:42 +00:00
|
|
|
self->priv->text = g_strdup (text);
|
|
|
|
if (self->priv->text_el)
|
|
|
|
g_object_set (self->priv->text_el, "text", text, NULL);
|
2010-06-23 14:30:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-06-30 16:13:35 +00:00
|
|
|
* ges_track_text_overlay_set_font_desc:
|
|
|
|
* @self: the #GESTrackTextOverlay
|
2010-06-23 14:30:18 +00:00
|
|
|
* @font_desc: the pango font description
|
2011-01-06 14:35:42 +00:00
|
|
|
*
|
2011-01-10 13:28:35 +00:00
|
|
|
* Sets the pango font description of the text this track object
|
|
|
|
* will render.
|
2010-06-23 14:30:18 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
void
|
2010-06-30 16:13:35 +00:00
|
|
|
ges_track_text_overlay_set_font_desc (GESTrackTextOverlay * self,
|
2010-06-23 14:30:18 +00:00
|
|
|
const gchar * font_desc)
|
|
|
|
{
|
2011-01-06 14:35:42 +00:00
|
|
|
if (self->priv->font_desc)
|
|
|
|
g_free (self->priv->font_desc);
|
2010-06-23 14:30:18 +00:00
|
|
|
|
2011-01-06 14:35:42 +00:00
|
|
|
self->priv->font_desc = g_strdup (font_desc);
|
2010-06-23 14:30:18 +00:00
|
|
|
GST_LOG ("setting font-desc to '%s'", font_desc);
|
2011-01-06 14:35:42 +00:00
|
|
|
if (self->priv->text_el)
|
|
|
|
g_object_set (self->priv->text_el, "font-desc", font_desc, NULL);
|
2010-06-23 14:30:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-01-10 13:28:35 +00:00
|
|
|
* ges_track_text_overlay_set_valignment:
|
2010-06-30 16:13:35 +00:00
|
|
|
* @self: the #GESTrackTextOverlay* to set text on
|
2011-01-10 13:28:35 +00:00
|
|
|
* @valign: The #GESTextVAlign defining the vertical alignment
|
|
|
|
* of the text render by @self.
|
2010-06-23 14:30:18 +00:00
|
|
|
*
|
|
|
|
* Sets the vertical aligment of the text.
|
2011-01-10 13:28:35 +00:00
|
|
|
*
|
2010-06-23 14:30:18 +00:00
|
|
|
*/
|
|
|
|
void
|
2010-06-30 16:13:35 +00:00
|
|
|
ges_track_text_overlay_set_valignment (GESTrackTextOverlay * self,
|
2010-07-02 10:25:58 +00:00
|
|
|
GESTextVAlign valign)
|
2010-06-23 14:30:18 +00:00
|
|
|
{
|
2011-01-06 14:35:42 +00:00
|
|
|
self->priv->valign = valign;
|
2010-06-23 14:30:18 +00:00
|
|
|
GST_LOG ("set valignment to: %d", valign);
|
2011-01-06 14:35:42 +00:00
|
|
|
if (self->priv->text_el)
|
|
|
|
g_object_set (self->priv->text_el, "valignment", valign, NULL);
|
2010-06-23 14:30:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-01-10 13:28:35 +00:00
|
|
|
* ges_track_text_overlay_set_halignment:
|
2010-06-30 16:13:35 +00:00
|
|
|
* @self: the #GESTrackTextOverlay* to set text on
|
2011-01-10 13:28:35 +00:00
|
|
|
* @halign: The #GESTextHAlign defining the horizontal alignment
|
|
|
|
* of the text render by @self.
|
|
|
|
*
|
|
|
|
* Sets the horizontal aligment of the text.
|
2010-06-23 14:30:18 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
void
|
2010-06-30 16:13:35 +00:00
|
|
|
ges_track_text_overlay_set_halignment (GESTrackTextOverlay * self,
|
2010-07-02 10:25:58 +00:00
|
|
|
GESTextHAlign halign)
|
2010-06-23 14:30:18 +00:00
|
|
|
{
|
2011-01-06 14:35:42 +00:00
|
|
|
self->priv->halign = halign;
|
2010-06-23 14:30:18 +00:00
|
|
|
GST_LOG ("set halignment to: %d", halign);
|
2011-01-06 14:35:42 +00:00
|
|
|
if (self->priv->text_el)
|
|
|
|
g_object_set (self->priv->text_el, "halignment", halign, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ges_track_text_overlay_get_text:
|
|
|
|
* @self: a GESTrackTextOverlay
|
|
|
|
*
|
2011-01-10 13:28:35 +00:00
|
|
|
* Get the text currently set on @source.
|
|
|
|
*
|
|
|
|
* Returns: The text currently set on @source.
|
|
|
|
*/
|
2011-01-06 14:35:42 +00:00
|
|
|
const gchar *
|
|
|
|
ges_track_text_overlay_get_text (GESTrackTextOverlay * self)
|
|
|
|
{
|
|
|
|
return self->priv->text;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ges_track_text_overlay_get_font_desc:
|
|
|
|
* @self: a GESTrackTextOverlay
|
|
|
|
*
|
2011-01-10 13:28:35 +00:00
|
|
|
* Get the pango font description currently set on @source.
|
|
|
|
*
|
|
|
|
* Returns: The pango font description currently set on @source.
|
2011-01-06 14:35:42 +00:00
|
|
|
*/
|
|
|
|
const char *
|
|
|
|
ges_track_text_overlay_get_font_desc (GESTrackTextOverlay * self)
|
|
|
|
{
|
|
|
|
return self->priv->font_desc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ges_track_text_overlay_get_halignment:
|
|
|
|
* @self: a GESTrackTextOverlay
|
|
|
|
*
|
2011-01-10 13:28:35 +00:00
|
|
|
* Get the horizontal aligment used by @source.
|
|
|
|
*
|
2011-01-07 13:37:56 +00:00
|
|
|
* Returns: The horizontal aligment used by @source.
|
2011-01-06 14:35:42 +00:00
|
|
|
*/
|
|
|
|
GESTextHAlign
|
|
|
|
ges_track_text_overlay_get_halignment (GESTrackTextOverlay * self)
|
|
|
|
{
|
|
|
|
return self->priv->halign;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ges_track_text_overlay_get_valignment:
|
|
|
|
* @self: a GESTrackTextOverlay
|
|
|
|
*
|
2011-01-10 13:28:35 +00:00
|
|
|
* Get the vertical aligment used by @source.
|
|
|
|
*
|
2011-01-07 13:37:56 +00:00
|
|
|
* Returns: The vertical aligment used by @source.
|
2011-01-06 14:35:42 +00:00
|
|
|
*/
|
|
|
|
GESTextVAlign
|
|
|
|
ges_track_text_overlay_get_valignment (GESTrackTextOverlay * self)
|
|
|
|
{
|
|
|
|
return self->priv->valign;
|
2010-06-23 14:30:18 +00:00
|
|
|
}
|
|
|
|
|
2011-01-10 13:28:35 +00:00
|
|
|
/**
|
|
|
|
* ges_track_text_overlay_new:
|
|
|
|
*
|
|
|
|
* Creates a new #GESTrackTextOverlay.
|
|
|
|
*
|
|
|
|
* Returns: The newly created #GESTrackTextOverlay or %NULL if something went
|
|
|
|
* wrong.
|
|
|
|
*/
|
2010-06-30 16:13:35 +00:00
|
|
|
GESTrackTextOverlay *
|
|
|
|
ges_track_text_overlay_new (void)
|
2010-06-23 14:30:18 +00:00
|
|
|
{
|
2010-06-30 16:13:35 +00:00
|
|
|
return g_object_new (GES_TYPE_TRACK_TEXT_OVERLAY, NULL);
|
2010-06-23 14:30:18 +00:00
|
|
|
}
|