gstreamer/ges/ges-uri-source.c

233 lines
6.6 KiB
C
Raw Normal View History

/* GStreamer Editing Services
2009-11-30 14:14:25 +00:00
* 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
2012-11-04 00:25:20 +00:00
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
/**
2013-01-26 17:07:01 +00:00
* SECTION:ges-uri-source
2010-07-01 14:48:45 +00:00
* @short_description: outputs a single media stream from a given file
*
2010-07-01 14:48:45 +00:00
* Outputs a single media stream from a given file. The stream chosen depends on
* the type of the track which contains the object.
*/
#include "ges-internal.h"
#include "ges-track-element.h"
2013-01-26 17:07:01 +00:00
#include "ges-uri-source.h"
#include "ges-uri-asset.h"
#include "ges-extractable.h"
static gchar *
ges_extractable_check_id (GType type, const gchar * id, GError ** error)
{
return g_strdup (id);
}
static void
extractable_set_asset (GESExtractable * self, GESAsset * asset)
{
/* FIXME That should go into #GESTrackElement, but
* some work is needed to make sure it works properly */
if (ges_track_element_get_track_type (GES_TRACK_ELEMENT (self)) ==
GES_TRACK_TYPE_UNKNOWN) {
ges_track_element_set_track_type (GES_TRACK_ELEMENT (self),
ges_track_element_asset_get_track_type (GES_TRACK_ELEMENT_ASSET
(asset)));
}
}
static void
ges_extractable_interface_init (GESExtractableInterface * iface)
{
iface->asset_type = GES_TYPE_URI_SOURCE_ASSET;
iface->check_id = ges_extractable_check_id;
iface->set_asset = extractable_set_asset;
}
2013-01-26 17:07:01 +00:00
G_DEFINE_TYPE_WITH_CODE (GESUriSource, ges_track_filesource,
2013-01-26 16:08:20 +00:00
GES_TYPE_SOURCE,
G_IMPLEMENT_INTERFACE (GES_TYPE_EXTRACTABLE,
ges_extractable_interface_init));
2013-01-26 17:07:01 +00:00
struct _GESUriSourcePrivate
2010-12-04 18:54:13 +00:00
{
void *dummy;
2010-12-04 18:54:13 +00:00
};
enum
{
PROP_0,
PROP_URI
};
static void
ges_track_filesource_get_property (GObject * object, guint property_id,
GValue * value, GParamSpec * pspec)
{
GESUriSource *uriclip = GES_URI_SOURCE (object);
switch (property_id) {
case PROP_URI:
2013-01-20 15:42:29 +00:00
g_value_set_string (value, uriclip->uri);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
}
}
static void
ges_track_filesource_set_property (GObject * object, guint property_id,
const GValue * value, GParamSpec * pspec)
{
GESUriSource *uriclip = GES_URI_SOURCE (object);
switch (property_id) {
case PROP_URI:
2013-01-20 15:42:29 +00:00
uriclip->uri = g_value_dup_string (value);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
}
}
static void
ges_track_filesource_dispose (GObject * object)
{
GESUriSource *uriclip = GES_URI_SOURCE (object);
2013-01-20 15:42:29 +00:00
if (uriclip->uri)
g_free (uriclip->uri);
G_OBJECT_CLASS (ges_track_filesource_parent_class)->dispose (object);
}
static void
_pad_added_cb (GstElement * element, GstPad * srcpad, GstPad * sinkpad)
{
gst_pad_link (srcpad, sinkpad);
}
static GstElement *
ges_uri_source_create_element (GESTrackElement * trksrc)
{
GESUriSource *self;
GstElement *ret;
GESTrack *track;
GstElement *decodebin;
GstElement *topbin, *volume;
GstPad *volume_srcpad, *volume_sinkpad;
GstPad *ghost;
GESLayer *layer;
gfloat layer_volume;
self = (GESUriSource *) trksrc;
track = ges_track_element_get_track (trksrc);
switch (track->type) {
case GES_TRACK_TYPE_AUDIO:
GST_DEBUG_OBJECT (trksrc, "Creating a bin uridecodebin ! volume");
topbin = gst_bin_new ("audio-src-bin");
volume = gst_element_factory_make ("volume", NULL);
gst_bin_add (GST_BIN (topbin), volume);
volume_srcpad = gst_element_get_static_pad (volume, "src");
ghost = gst_ghost_pad_new ("src", volume_srcpad);
gst_pad_set_active (ghost, TRUE);
gst_element_add_pad (topbin, ghost);
decodebin = gst_element_factory_make ("uridecodebin", NULL);
volume_sinkpad = gst_element_get_static_pad (volume, "sink");
g_signal_connect (decodebin, "pad-added", G_CALLBACK (_pad_added_cb),
volume_sinkpad);
gst_element_no_more_pads (decodebin);
gst_bin_add (GST_BIN (topbin), decodebin);
layer =
ges_clip_get_layer (GES_CLIP (ges_timeline_element_get_parent
(GES_TIMELINE_ELEMENT (trksrc))));
if (layer != NULL) {
ges_meta_container_get_float (GES_META_CONTAINER (layer),
GES_META_VOLUME, &layer_volume);
g_object_set (volume, "volume", layer_volume, NULL);
GST_DEBUG_OBJECT (trksrc, "Setting the volume to %f", layer_volume);
} else
GST_DEBUG_OBJECT (trksrc, "NOT setting the volume");
ret = topbin;
break;
default:
ret = gst_element_factory_make ("uridecodebin", NULL);
decodebin = ret;
break;
}
g_object_set (decodebin, "caps", ges_track_get_caps (track),
"expose-all-streams", FALSE, "uri", self->uri, NULL);
return ret;
}
static void
2013-01-26 17:07:01 +00:00
ges_track_filesource_class_init (GESUriSourceClass * klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
GESTrackElementClass *track_class = GES_TRACK_ELEMENT_CLASS (klass);
2013-01-26 17:07:01 +00:00
g_type_class_add_private (klass, sizeof (GESUriSourcePrivate));
2010-12-04 18:54:13 +00:00
object_class->get_property = ges_track_filesource_get_property;
object_class->set_property = ges_track_filesource_set_property;
object_class->dispose = ges_track_filesource_dispose;
/**
2013-01-26 17:07:01 +00:00
* GESUriSource:uri:
*
* The location of the file/resource to use.
*/
g_object_class_install_property (object_class, PROP_URI,
g_param_spec_string ("uri", "URI", "uri of the resource",
NULL, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
track_class->create_element = ges_uri_source_create_element;
}
static void
2013-01-26 17:07:01 +00:00
ges_track_filesource_init (GESUriSource * self)
{
2010-12-04 18:54:13 +00:00
self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
GES_TYPE_URI_SOURCE, GESUriSourcePrivate);
}
/**
* ges_track_filesource_new:
* @uri: the URI the source should control
*
2013-01-26 17:07:01 +00:00
* Creates a new #GESUriSource for the provided @uri.
*
2013-01-26 17:07:01 +00:00
* Returns: The newly created #GESUriSource, or %NULL if there was an
* error.
*/
2013-01-26 17:07:01 +00:00
GESUriSource *
ges_track_filesource_new (gchar * uri)
{
return g_object_new (GES_TYPE_URI_SOURCE, "uri", uri, NULL);
}