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
|
|
|
|
* 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-title-source
|
|
|
|
* @short_description: render stand-alone text titles
|
|
|
|
*
|
2010-06-14 13:34:08 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ges-internal.h"
|
2010-06-30 15:02:10 +00:00
|
|
|
#include "ges-track-object.h"
|
2010-06-14 13:34:08 +00:00
|
|
|
#include "ges-track-title-source.h"
|
2010-06-30 17:34:29 +00:00
|
|
|
#include "ges-track-video-test-source.h"
|
2010-06-14 13:34:08 +00:00
|
|
|
|
2010-06-30 15:29:21 +00:00
|
|
|
G_DEFINE_TYPE (GESTrackTitleSource, ges_track_title_src, GES_TYPE_TRACK_SOURCE);
|
2010-06-14 13:34:08 +00:00
|
|
|
|
2010-06-30 15:02:10 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
};
|
2010-06-14 13:34:08 +00:00
|
|
|
|
2010-06-30 15:29:21 +00:00
|
|
|
static void ges_track_title_src_dispose (GObject * object);
|
2010-06-14 13:34:08 +00:00
|
|
|
|
2010-06-30 15:29:21 +00:00
|
|
|
static void ges_track_title_src_finalize (GObject * object);
|
2010-06-14 13:34:08 +00:00
|
|
|
|
2010-06-30 15:29:21 +00:00
|
|
|
static void ges_track_title_src_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
|
|
|
|
2010-06-30 15:29:21 +00:00
|
|
|
static void ges_track_title_src_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
|
|
|
|
2010-06-30 15:29:21 +00:00
|
|
|
static GstElement *ges_track_title_src_create_element (GESTrackSource * self);
|
2010-06-14 13:34:08 +00:00
|
|
|
|
|
|
|
static void
|
2010-06-30 15:29:21 +00:00
|
|
|
ges_track_title_src_class_init (GESTrackTitleSourceClass * klass)
|
2010-06-14 13:34:08 +00:00
|
|
|
{
|
2010-06-30 15:02:10 +00:00
|
|
|
GObjectClass *object_class;
|
|
|
|
GESTrackSourceClass *bg_class;
|
2010-06-14 13:34:08 +00:00
|
|
|
|
2010-06-30 15:02:10 +00:00
|
|
|
object_class = G_OBJECT_CLASS (klass);
|
|
|
|
bg_class = GES_TRACK_SOURCE_CLASS (klass);
|
2010-06-14 13:34:08 +00:00
|
|
|
|
2010-06-30 15:29:21 +00:00
|
|
|
object_class->get_property = ges_track_title_src_get_property;
|
|
|
|
object_class->set_property = ges_track_title_src_set_property;
|
|
|
|
object_class->dispose = ges_track_title_src_dispose;
|
|
|
|
object_class->finalize = ges_track_title_src_finalize;
|
2010-06-30 15:02:10 +00:00
|
|
|
|
2010-06-30 15:29:21 +00:00
|
|
|
bg_class->create_element = ges_track_title_src_create_element;
|
2010-06-30 15:02:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-06-30 15:29:21 +00:00
|
|
|
ges_track_title_src_init (GESTrackTitleSource * self)
|
2010-06-30 15:02:10 +00:00
|
|
|
{
|
|
|
|
self->text = NULL;
|
2010-07-02 10:25:58 +00:00
|
|
|
self->font_desc = NULL;
|
2010-06-30 15:02:10 +00:00
|
|
|
self->text_el = NULL;
|
|
|
|
self->halign = DEFAULT_HALIGNMENT;
|
|
|
|
self->valign = DEFAULT_VALIGNMENT;
|
|
|
|
self->background_el = NULL;
|
2010-06-14 13:34:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-06-30 15:29:21 +00:00
|
|
|
ges_track_title_src_dispose (GObject * object)
|
2010-06-14 13:34:08 +00:00
|
|
|
{
|
2010-06-30 15:29:21 +00:00
|
|
|
GESTrackTitleSource *self = GES_TRACK_TITLE_SOURCE (object);
|
2010-06-30 15:02:10 +00:00
|
|
|
if (self->text) {
|
|
|
|
g_free (self->text);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self->font_desc) {
|
|
|
|
g_free (self->font_desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self->text_el) {
|
|
|
|
g_object_unref (self->text_el);
|
|
|
|
self->text_el = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self->background_el) {
|
|
|
|
g_object_unref (self->background_el);
|
|
|
|
self->background_el = NULL;
|
|
|
|
}
|
|
|
|
|
2010-06-30 15:29:21 +00:00
|
|
|
G_OBJECT_CLASS (ges_track_title_src_parent_class)->dispose (object);
|
2010-06-14 13:34:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-06-30 15:29:21 +00:00
|
|
|
ges_track_title_src_finalize (GObject * object)
|
2010-06-14 13:34:08 +00:00
|
|
|
{
|
2010-06-30 15:29:21 +00:00
|
|
|
G_OBJECT_CLASS (ges_track_title_src_parent_class)->finalize (object);
|
2010-06-14 13:34:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-06-30 15:29:21 +00:00
|
|
|
ges_track_title_src_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
|
2010-06-30 15:29:21 +00:00
|
|
|
ges_track_title_src_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 *
|
2010-06-30 15:29:21 +00:00
|
|
|
ges_track_title_src_create_element (GESTrackSource * object)
|
2010-06-14 13:34:08 +00:00
|
|
|
{
|
2010-06-30 15:29:21 +00:00
|
|
|
GESTrackTitleSource *self = GES_TRACK_TITLE_SOURCE (object);
|
2010-06-30 15:02:10 +00:00
|
|
|
GstElement *topbin, *background, *text;
|
|
|
|
GstPad *src;
|
|
|
|
|
|
|
|
topbin = gst_bin_new ("titlesrc-bin");
|
|
|
|
background = gst_element_factory_make ("videotestsrc", "titlesrc-bg");
|
|
|
|
|
|
|
|
text = gst_element_factory_make ("textoverlay", "titlsrc-text");
|
|
|
|
if (self->text) {
|
|
|
|
g_object_set (text, "text", self->text, NULL);
|
|
|
|
}
|
|
|
|
if (self->font_desc) {
|
|
|
|
g_object_set (text, "font-desc", self->font_desc, NULL);
|
|
|
|
}
|
|
|
|
g_object_set (text, "valignment", (gint) self->valign, "halignment",
|
|
|
|
(gint) self->halign, NULL);
|
|
|
|
|
2010-07-02 10:48:11 +00:00
|
|
|
g_object_set (background, "pattern", (gint) GES_VIDEO_TEST_PATTERN_BLACK,
|
2010-06-30 15:02:10 +00:00
|
|
|
NULL);
|
|
|
|
|
|
|
|
gst_bin_add_many (GST_BIN (topbin), background, text, NULL);
|
|
|
|
|
|
|
|
gst_element_link (background, text);
|
|
|
|
|
|
|
|
src = gst_ghost_pad_new ("src", gst_element_get_static_pad (text, "src"));
|
|
|
|
gst_element_add_pad (topbin, src);
|
|
|
|
|
|
|
|
g_object_ref (text);
|
|
|
|
g_object_ref (background);
|
|
|
|
|
|
|
|
self->text_el = text;
|
|
|
|
self->background_el = background;
|
|
|
|
|
|
|
|
return topbin;
|
2010-06-14 13:34:08 +00:00
|
|
|
}
|
|
|
|
|
2010-06-30 15:02:10 +00:00
|
|
|
/**
|
2010-06-30 15:29:21 +00:00
|
|
|
* ges_track_title_source_set_text:
|
|
|
|
* @self: the #GESTrackTitleSource* 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 object will render.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
2010-06-30 15:29:21 +00:00
|
|
|
ges_track_title_source_set_text (GESTrackTitleSource * self, const gchar * text)
|
2010-06-14 13:34:08 +00:00
|
|
|
{
|
2010-06-30 15:02:10 +00:00
|
|
|
if (self->text)
|
|
|
|
g_free (self->text);
|
2010-06-14 13:34:08 +00:00
|
|
|
|
2010-06-30 15:02:10 +00:00
|
|
|
self->text = g_strdup (text);
|
|
|
|
if (self->text_el)
|
|
|
|
g_object_set (self->text_el, "text", text, NULL);
|
|
|
|
}
|
2010-06-14 13:34:08 +00:00
|
|
|
|
2010-06-30 15:02:10 +00:00
|
|
|
/**
|
2010-06-30 15:29:21 +00:00
|
|
|
* ges_track_title_source_set_font_desc:
|
|
|
|
* @self: the #GESTrackTitleSource
|
2010-06-30 15:02:10 +00:00
|
|
|
* @font_desc: the pango font description
|
|
|
|
*
|
|
|
|
* Sets the text this track object will render.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
2010-06-30 15:29:21 +00:00
|
|
|
ges_track_title_source_set_font_desc (GESTrackTitleSource * self,
|
2010-06-30 15:02:10 +00:00
|
|
|
const gchar * font_desc)
|
|
|
|
{
|
|
|
|
if (self->font_desc)
|
|
|
|
g_free (self->font_desc);
|
2010-06-14 13:34:08 +00:00
|
|
|
|
2010-06-30 15:02:10 +00:00
|
|
|
self->font_desc = g_strdup (font_desc);
|
|
|
|
GST_LOG ("setting font-desc to '%s'", font_desc);
|
|
|
|
if (self->text_el)
|
|
|
|
g_object_set (self->text_el, "font-desc", font_desc, NULL);
|
2010-06-14 13:34:08 +00:00
|
|
|
}
|
|
|
|
|
2010-06-30 15:02:10 +00:00
|
|
|
/**
|
2010-06-30 15:29:21 +00:00
|
|
|
* ges_track_title_source_valignment:
|
|
|
|
* @self: the #GESTrackTitleSource* 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
|
2010-06-30 15:29:21 +00:00
|
|
|
ges_track_title_source_set_valignment (GESTrackTitleSource * self,
|
2010-07-02 10:25:58 +00:00
|
|
|
GESTextVAlign valign)
|
2010-06-30 15:02:10 +00:00
|
|
|
{
|
|
|
|
self->valign = valign;
|
|
|
|
GST_LOG ("set valignment to: %d", valign);
|
|
|
|
if (self->text_el)
|
|
|
|
g_object_set (self->text_el, "valignment", valign, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-06-30 15:29:21 +00:00
|
|
|
* ges_track_title_source_halignment:
|
|
|
|
* @self: the #GESTrackTitleSource* 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
|
2010-06-30 15:29:21 +00:00
|
|
|
ges_track_title_source_set_halignment (GESTrackTitleSource * self,
|
2010-07-02 10:25:58 +00:00
|
|
|
GESTextHAlign halign)
|
2010-06-14 13:34:08 +00:00
|
|
|
{
|
2010-06-30 15:02:10 +00:00
|
|
|
self->halign = halign;
|
|
|
|
GST_LOG ("set halignment to: %d", halign);
|
|
|
|
if (self->text_el)
|
|
|
|
g_object_set (self->text_el, "halignment", halign, NULL);
|
2010-06-14 13:34:08 +00:00
|
|
|
}
|
|
|
|
|
2010-06-30 15:29:21 +00:00
|
|
|
GESTrackTitleSource *
|
|
|
|
ges_track_title_source_new (void)
|
2010-06-14 13:34:08 +00:00
|
|
|
{
|
2010-06-30 15:29:21 +00:00
|
|
|
return g_object_new (GES_TYPE_TRACK_TITLE_SOURCE, NULL);
|
2010-06-14 13:34:08 +00:00
|
|
|
}
|