mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
189 lines
5.3 KiB
C
189 lines
5.3 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-titlesource
|
|
* @short_description: An object for manipulating media files in a GESTimeline
|
|
*
|
|
* Represents all the output treams from a particular uri. It is assumed that
|
|
* the URI points to a file of some type.
|
|
*/
|
|
|
|
#include "ges-internal.h"
|
|
#include "ges-timeline-title-source.h"
|
|
#include "ges-timeline-source.h"
|
|
#include "ges-track-object.h"
|
|
//#include "ges-track-video-title-source.h"
|
|
//#include "ges-track-audio-title-source.h"
|
|
#include <string.h>
|
|
|
|
G_DEFINE_TYPE (GESTimelineTitleSource, ges_tl_title_src,
|
|
GES_TYPE_TIMELINE_SOURCE);
|
|
|
|
enum
|
|
{
|
|
PROP_0,
|
|
PROP_MUTE,
|
|
};
|
|
|
|
static void
|
|
ges_tl_title_src_set_mute (GESTimelineTitleSource * self, gboolean mute);
|
|
|
|
static GESTrackObject
|
|
* ges_tl_title_src_create_track_object (GESTimelineObject * obj,
|
|
GESTrack * track);
|
|
|
|
static void
|
|
ges_tl_title_src_get_property (GObject * object, guint property_id,
|
|
GValue * value, GParamSpec * pspec)
|
|
{
|
|
GESTimelineTitleSource *tfs = GES_TIMELINE_TITLE_SOURCE (object);
|
|
|
|
switch (property_id) {
|
|
case PROP_MUTE:
|
|
g_value_set_boolean (value, tfs->mute);
|
|
break;
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
}
|
|
}
|
|
|
|
static void
|
|
ges_tl_title_src_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_tl_title_src_set_mute (tfs, g_value_get_boolean (value));
|
|
break;
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
}
|
|
}
|
|
|
|
static void
|
|
ges_tl_title_src_dispose (GObject * object)
|
|
{
|
|
G_OBJECT_CLASS (ges_tl_title_src_parent_class)->dispose (object);
|
|
}
|
|
|
|
static void
|
|
ges_tl_title_src_finalize (GObject * object)
|
|
{
|
|
G_OBJECT_CLASS (ges_tl_title_src_parent_class)->finalize (object);
|
|
}
|
|
|
|
static void
|
|
ges_tl_title_src_class_init (GESTimelineTitleSourceClass * klass)
|
|
{
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
GESTimelineObjectClass *timobj_class = GES_TIMELINE_OBJECT_CLASS (klass);
|
|
|
|
object_class->get_property = ges_tl_title_src_get_property;
|
|
object_class->set_property = ges_tl_title_src_set_property;
|
|
object_class->dispose = ges_tl_title_src_dispose;
|
|
object_class->finalize = ges_tl_title_src_finalize;
|
|
|
|
/**
|
|
* 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_tl_title_src_create_track_object;
|
|
timobj_class->need_fill_track = FALSE;
|
|
}
|
|
|
|
static void
|
|
ges_tl_title_src_init (GESTimelineTitleSource * self)
|
|
{
|
|
GES_TIMELINE_OBJECT (self)->duration = 0;
|
|
}
|
|
|
|
static void
|
|
ges_tl_title_src_set_mute (GESTimelineTitleSource * self, gboolean mute)
|
|
{
|
|
GList *tmp;
|
|
GESTimelineObject *object = (GESTimelineObject *) self;
|
|
|
|
GST_DEBUG ("self:%p, mute:%d", self, mute);
|
|
|
|
self->mute = mute;
|
|
|
|
/* Go over tracked objects, and update 'active' status on all audio objects */
|
|
for (tmp = object->trackobjects; tmp; tmp = tmp->next) {
|
|
GESTrackObject *trackobject = (GESTrackObject *) tmp->data;
|
|
|
|
if (trackobject->track->type == GES_TRACK_TYPE_AUDIO)
|
|
ges_track_object_set_active (trackobject, !mute);
|
|
}
|
|
}
|
|
|
|
static GESTrackObject *
|
|
ges_tl_title_src_create_track_object (GESTimelineObject * obj, GESTrack * track)
|
|
{
|
|
|
|
#if 0
|
|
GESTimelineTitleSource *tfs = (GESTimelineTitleSource *) obj;
|
|
GESTrackObject *res = NULL;
|
|
|
|
GST_DEBUG ("Creating a GESTrackTitleSource");
|
|
|
|
if (track->type == GES_TRACK_TYPE_VIDEO) {
|
|
res = (GESTrackObject *) ges_track_video_title_source_new ();
|
|
ges_track_video_title_source_set_pattern (
|
|
(GESTrackVideoTitleSource *) res, tfs->vpattern);
|
|
}
|
|
|
|
else if (track->type == GES_TRACK_TYPE_AUDIO) {
|
|
res = (GESTrackObject *) ges_track_audio_title_source_new ();
|
|
if (tfs->mute)
|
|
ges_track_object_set_active (res, FALSE);
|
|
}
|
|
|
|
else {
|
|
res = (GESTrackObject *) ges_track_title_source_new ();
|
|
}
|
|
|
|
return res;
|
|
#endif
|
|
|
|
return NULL;
|
|
}
|
|
|
|
/**
|
|
* ges_timeline_titlesource_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);
|
|
}
|