mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 20:01:35 +00:00
512 lines
15 KiB
C
512 lines
15 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., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
/**
|
|
* SECTION:ges-timeline-title-source
|
|
* @short_description: Render stand-alone titles in GESTimelineLayer.
|
|
*
|
|
* Renders the given text in the specified font, at specified position, and
|
|
* with the specified background pattern.
|
|
*
|
|
* Note: creates a silent #GESTrackAudioTestSource to fill audio tracks
|
|
*/
|
|
|
|
#include "ges-internal.h"
|
|
#include "ges-timeline-title-source.h"
|
|
#include "ges-timeline-source.h"
|
|
#include "ges-track-object.h"
|
|
#include "ges-track-title-source.h"
|
|
#include "ges-track-audio-test-source.h"
|
|
#include <string.h>
|
|
|
|
G_DEFINE_TYPE (GESTimelineTitleSource, ges_timeline_title_source,
|
|
GES_TYPE_TIMELINE_SOURCE);
|
|
|
|
#define DEFAULT_TEXT ""
|
|
#define DEFAULT_FONT_DESC "Serif 36"
|
|
#define GES_TIMELINE_TITLE_SOURCE_VALIGN_TYPE (ges_timeline_title_source_valign_get_type())
|
|
#define GES_TIMELINE_TITLE_SOURCE_HALIGN_TYPE (ges_timeline_title_source_halign_get_type())
|
|
|
|
struct _GESTimelineTitleSourcePrivate
|
|
{
|
|
gboolean mute;
|
|
gchar *text;
|
|
gchar *font_desc;
|
|
GESTextVAlign halign;
|
|
GESTextHAlign valign;
|
|
};
|
|
|
|
enum
|
|
{
|
|
PROP_0,
|
|
PROP_MUTE,
|
|
PROP_TEXT,
|
|
PROP_FONT_DESC,
|
|
PROP_HALIGNMENT,
|
|
PROP_VALIGNMENT,
|
|
};
|
|
|
|
static GESTrackObject
|
|
* ges_timeline_title_source_create_track_object (GESTimelineObject * obj,
|
|
GESTrack * track);
|
|
|
|
static void
|
|
ges_timeline_title_source_get_property (GObject * object, guint property_id,
|
|
GValue * value, GParamSpec * pspec)
|
|
{
|
|
GESTimelineTitleSourcePrivate *priv =
|
|
GES_TIMELINE_TITLE_SOURCE (object)->priv;
|
|
|
|
switch (property_id) {
|
|
case PROP_MUTE:
|
|
g_value_set_boolean (value, priv->mute);
|
|
break;
|
|
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;
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
}
|
|
}
|
|
|
|
static void
|
|
ges_timeline_title_source_set_property (GObject * object, guint property_id,
|
|
const GValue * value, GParamSpec * pspec)
|
|
{
|
|
GESTimelineTitleSource *tfs = GES_TIMELINE_TITLE_SOURCE (object);
|
|
|
|
switch (property_id) {
|
|
case PROP_MUTE:
|
|
ges_timeline_title_source_set_mute (tfs, g_value_get_boolean (value));
|
|
break;
|
|
case PROP_TEXT:
|
|
ges_timeline_title_source_set_text (tfs, g_value_get_string (value));
|
|
break;
|
|
case PROP_FONT_DESC:
|
|
ges_timeline_title_source_set_font_desc (tfs, g_value_get_string (value));
|
|
break;
|
|
case PROP_HALIGNMENT:
|
|
ges_timeline_title_source_set_halignment (tfs, g_value_get_enum (value));
|
|
break;
|
|
case PROP_VALIGNMENT:
|
|
ges_timeline_title_source_set_valignment (tfs, g_value_get_enum (value));
|
|
break;
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
}
|
|
}
|
|
|
|
static void
|
|
ges_timeline_title_source_dispose (GObject * object)
|
|
{
|
|
GESTimelineTitleSource *self = GES_TIMELINE_TITLE_SOURCE (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_timeline_title_source_parent_class)->dispose (object);
|
|
}
|
|
|
|
static void
|
|
ges_timeline_title_source_class_init (GESTimelineTitleSourceClass * klass)
|
|
{
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
GESTimelineObjectClass *timobj_class = GES_TIMELINE_OBJECT_CLASS (klass);
|
|
|
|
g_type_class_add_private (klass, sizeof (GESTimelineTitleSourcePrivate));
|
|
|
|
object_class->get_property = ges_timeline_title_source_get_property;
|
|
object_class->set_property = ges_timeline_title_source_set_property;
|
|
object_class->dispose = ges_timeline_title_source_dispose;
|
|
|
|
/**
|
|
* GESTimelineTitleSource: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));
|
|
|
|
/**
|
|
* GESTimelineTitleSource: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));
|
|
|
|
/**
|
|
* GESTimelineTitleSource: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));
|
|
/**
|
|
* GESTimelineTitleSource: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));
|
|
/**
|
|
* GESTimelineTitleSource:mute:
|
|
*
|
|
* Whether the sound will be played or not.
|
|
*/
|
|
g_object_class_install_property (object_class, PROP_MUTE,
|
|
g_param_spec_boolean ("mute", "Mute", "Mute audio track",
|
|
FALSE, G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
|
|
|
timobj_class->create_track_object =
|
|
ges_timeline_title_source_create_track_object;
|
|
timobj_class->need_fill_track = FALSE;
|
|
}
|
|
|
|
static void
|
|
ges_timeline_title_source_init (GESTimelineTitleSource * self)
|
|
{
|
|
self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
|
|
GES_TYPE_TIMELINE_TITLE_SOURCE, GESTimelineTitleSourcePrivate);
|
|
|
|
GES_TIMELINE_OBJECT (self)->duration = 0;
|
|
/* Not 100% required since a new gobject's content will always be memzero'd */
|
|
self->priv->mute = FALSE;
|
|
self->priv->text = NULL;
|
|
self->priv->font_desc = NULL;
|
|
self->priv->halign = DEFAULT_HALIGNMENT;
|
|
self->priv->valign = DEFAULT_VALIGNMENT;
|
|
}
|
|
|
|
/**
|
|
* ges_timeline_title_source_set_text:
|
|
* @self: the #GESTimelineTitleSource* to set text on
|
|
* @text: the text to render. an internal copy of this text will be
|
|
* made.
|
|
*
|
|
* Sets the text this timeline object will render.
|
|
*
|
|
*/
|
|
void
|
|
ges_timeline_title_source_set_text (GESTimelineTitleSource * self,
|
|
const gchar * text)
|
|
{
|
|
GList *tmp, *trackobjects;
|
|
GESTimelineObject *object = (GESTimelineObject *) self;
|
|
|
|
GST_DEBUG ("self:%p, text:%s", self, text);
|
|
|
|
if (self->priv->text)
|
|
g_free (self->priv->text);
|
|
|
|
self->priv->text = g_strdup (text);
|
|
|
|
/* FIXME : We need a much less crack way to find the trackobject to change */
|
|
trackobjects = ges_timeline_object_get_track_objects (object);
|
|
for (tmp = trackobjects; tmp; tmp = tmp->next) {
|
|
GESTrackObject *trackobject = (GESTrackObject *) tmp->data;
|
|
|
|
if (GES_IS_TRACK_TITLE_SOURCE (trackobject))
|
|
ges_track_title_source_set_text (GES_TRACK_TITLE_SOURCE
|
|
(trackobject), self->priv->text);
|
|
|
|
g_object_unref (GES_TRACK_OBJECT (tmp->data));
|
|
}
|
|
g_list_free (trackobjects);
|
|
}
|
|
|
|
/**
|
|
* ges_timeline_title_source_set_font_desc:
|
|
* @self: the #GESTimelineTitleSource*
|
|
* @font_desc: the pango font description
|
|
*
|
|
* Sets the pango font description of the text.
|
|
*
|
|
*/
|
|
void
|
|
ges_timeline_title_source_set_font_desc (GESTimelineTitleSource * self,
|
|
const gchar * font_desc)
|
|
{
|
|
GList *tmp, *trackobjects;
|
|
GESTimelineObject *object = (GESTimelineObject *) self;
|
|
|
|
GST_DEBUG ("self:%p, font_desc:%s", self, font_desc);
|
|
|
|
if (self->priv->font_desc)
|
|
g_free (self->priv->font_desc);
|
|
|
|
self->priv->font_desc = g_strdup (font_desc);
|
|
|
|
/* FIXME : We need a much less crack way to find the trackobject to change */
|
|
trackobjects = ges_timeline_object_get_track_objects (object);
|
|
for (tmp = trackobjects; tmp; tmp = tmp->next) {
|
|
GESTrackObject *trackobject = (GESTrackObject *) tmp->data;
|
|
|
|
if (GES_IS_TRACK_TITLE_SOURCE (trackobject))
|
|
ges_track_title_source_set_font_desc (GES_TRACK_TITLE_SOURCE
|
|
(trackobject), self->priv->font_desc);
|
|
|
|
g_object_unref (GES_TRACK_OBJECT (tmp->data));
|
|
}
|
|
g_list_free (trackobjects);
|
|
}
|
|
|
|
/**
|
|
* ges_timeline_title_source_set_halignment:
|
|
* @self: the #GESTimelineTitleSource* to set horizontal alignement of text on
|
|
* @halign: #GESTextHAlign
|
|
*
|
|
* Sets the horizontal aligment of the text.
|
|
*
|
|
*/
|
|
void
|
|
ges_timeline_title_source_set_halignment (GESTimelineTitleSource * self,
|
|
GESTextHAlign halign)
|
|
{
|
|
GList *tmp, *trackobjects;
|
|
GESTimelineObject *object = (GESTimelineObject *) self;
|
|
|
|
GST_DEBUG ("self:%p, halign:%d", self, halign);
|
|
|
|
self->priv->halign = halign;
|
|
|
|
/* FIXME : We need a much less crack way to find the trackobject to change */
|
|
trackobjects = ges_timeline_object_get_track_objects (object);
|
|
for (tmp = trackobjects; tmp; tmp = tmp->next) {
|
|
GESTrackObject *trackobject = (GESTrackObject *) tmp->data;
|
|
|
|
if (GES_IS_TRACK_TITLE_SOURCE (trackobject))
|
|
ges_track_title_source_set_halignment (GES_TRACK_TITLE_SOURCE
|
|
(trackobject), self->priv->halign);
|
|
|
|
g_object_unref (GES_TRACK_OBJECT (tmp->data));
|
|
}
|
|
g_list_free (trackobjects);
|
|
}
|
|
|
|
/**
|
|
* ges_timeline_title_source_set_valignment:
|
|
* @self: the #GESTimelineTitleSource* to set vertical alignement of text on
|
|
* @valign: #GESTextVAlign
|
|
*
|
|
* Sets the vertical aligment of the text.
|
|
*
|
|
*/
|
|
void
|
|
ges_timeline_title_source_set_valignment (GESTimelineTitleSource * self,
|
|
GESTextVAlign valign)
|
|
{
|
|
GList *tmp, *trackobjects;
|
|
GESTimelineObject *object = (GESTimelineObject *) self;
|
|
|
|
GST_DEBUG ("self:%p, valign:%d", self, valign);
|
|
|
|
self->priv->valign = valign;
|
|
|
|
/* FIXME : We need a much less crack way to find the trackobject to change */
|
|
trackobjects = ges_timeline_object_get_track_objects (object);
|
|
for (tmp = trackobjects; tmp; tmp = tmp->next) {
|
|
GESTrackObject *trackobject = (GESTrackObject *) tmp->data;
|
|
|
|
if (GES_IS_TRACK_TITLE_SOURCE (trackobject))
|
|
ges_track_title_source_set_valignment (GES_TRACK_TITLE_SOURCE
|
|
(trackobject), self->priv->valign);
|
|
|
|
g_object_unref (GES_TRACK_OBJECT (tmp->data));
|
|
}
|
|
g_list_free (trackobjects);
|
|
}
|
|
|
|
/**
|
|
* ges_timeline_title_source_set_mute:
|
|
* @self: the #GESTimelineTitleSource on which to mute or unmute the audio track
|
|
* @mute: %TRUE to mute the audio track, %FALSE to unmute it
|
|
*
|
|
* Sets whether the audio track of this timeline object is muted or not
|
|
*
|
|
*/
|
|
void
|
|
ges_timeline_title_source_set_mute (GESTimelineTitleSource * self,
|
|
gboolean mute)
|
|
{
|
|
GList *tmp, *trackobjects;
|
|
GESTimelineObject *object = (GESTimelineObject *) self;
|
|
|
|
GST_DEBUG ("self:%p, mute:%d", self, mute);
|
|
|
|
self->priv->mute = mute;
|
|
|
|
/* Go over tracked objects, and update 'active' status on all audio objects */
|
|
/* FIXME : We need a much less crack way to find the trackobject to change */
|
|
trackobjects = ges_timeline_object_get_track_objects (object);
|
|
for (tmp = trackobjects; tmp; tmp = tmp->next) {
|
|
GESTrackObject *trackobject = (GESTrackObject *) tmp->data;
|
|
|
|
if (ges_track_object_get_track (trackobject)->type == GES_TRACK_TYPE_AUDIO)
|
|
ges_track_object_set_active (trackobject, !mute);
|
|
|
|
g_object_unref (GES_TRACK_OBJECT (tmp->data));
|
|
}
|
|
g_list_free (trackobjects);
|
|
}
|
|
|
|
/**
|
|
* ges_timeline_title_source_get_text:
|
|
* @self: a #GESTimelineTitleSource
|
|
*
|
|
* Get the text currently set on @self.
|
|
*
|
|
* Returns: The text currently set on @self.
|
|
*
|
|
*/
|
|
const gchar *
|
|
ges_timeline_title_source_get_text (GESTimelineTitleSource * self)
|
|
{
|
|
return self->priv->text;
|
|
}
|
|
|
|
/**
|
|
* ges_timeline_title_source_get_font_desc:
|
|
* @self: a #GESTimelineTitleSource
|
|
*
|
|
* Get the pango font description used by @self.
|
|
*
|
|
* Returns: The pango font description used by @self.
|
|
*
|
|
*/
|
|
const char *
|
|
ges_timeline_title_source_get_font_desc (GESTimelineTitleSource * self)
|
|
{
|
|
return self->priv->font_desc;
|
|
}
|
|
|
|
/**
|
|
* ges_timeline_title_source_get_halignment:
|
|
* @self: a #GESTimelineTitleSource
|
|
*
|
|
* Get the horizontal aligment used by @self.
|
|
*
|
|
* Returns: The horizontal aligment used by @self.
|
|
*
|
|
*/
|
|
GESTextHAlign
|
|
ges_timeline_title_source_get_halignment (GESTimelineTitleSource * self)
|
|
{
|
|
return self->priv->halign;
|
|
}
|
|
|
|
/**
|
|
* ges_timeline_title_source_get_valignment:
|
|
* @self: a #GESTimelineTitleSource
|
|
*
|
|
* Get the vertical aligment used by @self.
|
|
*
|
|
* Returns: The vertical aligment used by @self.
|
|
*
|
|
*/
|
|
GESTextVAlign
|
|
ges_timeline_title_source_get_valignment (GESTimelineTitleSource * self)
|
|
{
|
|
return self->priv->valign;
|
|
}
|
|
|
|
|
|
/**
|
|
* ges_timeline_title_source_is_muted:
|
|
* @self: a #GESTimelineTitleSource
|
|
*
|
|
* Let you know if the audio track of @self is muted or not.
|
|
*
|
|
* Returns: Whether the audio track of @self is muted or not.
|
|
*
|
|
*/
|
|
gboolean
|
|
ges_timeline_title_source_is_muted (GESTimelineTitleSource * self)
|
|
{
|
|
return self->priv->mute;
|
|
}
|
|
|
|
static GESTrackObject *
|
|
ges_timeline_title_source_create_track_object (GESTimelineObject * obj,
|
|
GESTrack * track)
|
|
{
|
|
|
|
GESTimelineTitleSourcePrivate *priv = GES_TIMELINE_TITLE_SOURCE (obj)->priv;
|
|
GESTrackObject *res = NULL;
|
|
|
|
GST_DEBUG ("Creating a GESTrackTitleSource");
|
|
|
|
if (track->type == GES_TRACK_TYPE_VIDEO) {
|
|
res = (GESTrackObject *) ges_track_title_source_new ();
|
|
GST_DEBUG ("Setting text property");
|
|
ges_track_title_source_set_text ((GESTrackTitleSource *) res, priv->text);
|
|
ges_track_title_source_set_font_desc ((GESTrackTitleSource *) res,
|
|
priv->font_desc);
|
|
ges_track_title_source_set_halignment ((GESTrackTitleSource *) res,
|
|
priv->halign);
|
|
ges_track_title_source_set_valignment ((GESTrackTitleSource *) res,
|
|
priv->valign);
|
|
}
|
|
|
|
else if (track->type == GES_TRACK_TYPE_AUDIO) {
|
|
res = (GESTrackObject *) ges_track_audio_test_source_new ();
|
|
if (priv->mute)
|
|
ges_track_object_set_active (res, FALSE);
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
/**
|
|
* ges_timeline_title_source_new:
|
|
*
|
|
* Creates a new #GESTimelineTitleSource
|
|
*
|
|
* Returns: The newly created #GESTimelineTitleSource, or NULL if there was an
|
|
* error.
|
|
*/
|
|
GESTimelineTitleSource *
|
|
ges_timeline_title_source_new (void)
|
|
{
|
|
/* FIXME : Check for validity/existence of URI */
|
|
return g_object_new (GES_TYPE_TIMELINE_TITLE_SOURCE, NULL);
|
|
}
|