2009-09-21 10:51:16 +00:00
|
|
|
/* GStreamer Editing Services
|
2009-11-30 14:14:25 +00:00
|
|
|
* Copyright (C) 2009 Edward Hervey <edward.hervey@collabora.co.uk>
|
|
|
|
* 2009 Nokia Corporation
|
2009-09-21 10:51:16 +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
|
2012-11-04 00:25:20 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2009-09-21 10:51:16 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2014-04-07 19:02:48 +00:00
|
|
|
* SECTION:gesaudiourisource
|
2017-03-08 21:13:48 +00:00
|
|
|
* @title: GESAudioUriSource
|
2013-07-09 13:31:15 +00:00
|
|
|
* @short_description: outputs a single audio stream from a given file
|
2009-09-21 10:51:16 +00:00
|
|
|
*/
|
2018-09-24 14:41:24 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2009-09-21 10:51:16 +00:00
|
|
|
|
2013-05-16 06:10:35 +00:00
|
|
|
#include "ges-utils.h"
|
2009-09-21 10:51:16 +00:00
|
|
|
#include "ges-internal.h"
|
2013-01-26 15:31:33 +00:00
|
|
|
#include "ges-track-element.h"
|
2020-07-03 20:34:21 +00:00
|
|
|
#include "ges-uri-source.h"
|
2013-07-09 13:31:15 +00:00
|
|
|
#include "ges-audio-uri-source.h"
|
2013-01-20 15:44:57 +00:00
|
|
|
#include "ges-uri-asset.h"
|
2012-12-21 17:28:16 +00:00
|
|
|
#include "ges-extractable.h"
|
2009-09-21 10:51:16 +00:00
|
|
|
|
2013-07-09 13:31:15 +00:00
|
|
|
struct _GESAudioUriSourcePrivate
|
2013-05-16 06:10:35 +00:00
|
|
|
{
|
2020-07-03 20:34:21 +00:00
|
|
|
GESUriSource parent;
|
2013-05-16 06:10:35 +00:00
|
|
|
};
|
|
|
|
|
2013-05-16 07:40:22 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_URI
|
|
|
|
};
|
|
|
|
|
2013-06-27 12:20:00 +00:00
|
|
|
/* GESSource VMethod */
|
2013-05-16 07:40:22 +00:00
|
|
|
static GstElement *
|
2021-02-25 02:37:28 +00:00
|
|
|
ges_audio_uri_source_create_source (GESSource * element)
|
2013-05-16 07:40:22 +00:00
|
|
|
{
|
2020-07-03 20:34:21 +00:00
|
|
|
return ges_uri_source_create_source (GES_AUDIO_URI_SOURCE (element)->priv);
|
2013-05-16 07:40:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Extractable interface implementation */
|
|
|
|
|
2012-12-21 17:28:16 +00:00
|
|
|
static gchar *
|
|
|
|
ges_extractable_check_id (GType type, const gchar * id, GError ** error)
|
|
|
|
{
|
|
|
|
return g_strdup (id);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ges_extractable_interface_init (GESExtractableInterface * iface)
|
|
|
|
{
|
2013-05-23 17:16:22 +00:00
|
|
|
iface->asset_type = GES_TYPE_URI_SOURCE_ASSET;
|
2012-12-21 17:28:16 +00:00
|
|
|
iface->check_id = ges_extractable_check_id;
|
|
|
|
}
|
|
|
|
|
2013-07-09 13:31:15 +00:00
|
|
|
G_DEFINE_TYPE_WITH_CODE (GESAudioUriSource, ges_audio_uri_source,
|
2018-09-06 01:55:02 +00:00
|
|
|
GES_TYPE_AUDIO_SOURCE, G_ADD_PRIVATE (GESAudioUriSource)
|
2012-12-21 17:28:16 +00:00
|
|
|
G_IMPLEMENT_INTERFACE (GES_TYPE_EXTRACTABLE,
|
|
|
|
ges_extractable_interface_init));
|
2009-09-21 10:51:16 +00:00
|
|
|
|
2013-05-16 07:40:22 +00:00
|
|
|
|
|
|
|
/* GObject VMethods */
|
2009-09-21 10:51:16 +00:00
|
|
|
|
2020-02-18 18:21:38 +00:00
|
|
|
static gboolean
|
|
|
|
_get_natural_framerate (GESTimelineElement * self, gint * framerate_n,
|
|
|
|
gint * framerate_d)
|
|
|
|
{
|
|
|
|
if (self->parent)
|
|
|
|
return ges_timeline_element_get_natural_framerate (self->parent,
|
|
|
|
framerate_n, framerate_d);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2009-09-21 10:51:16 +00:00
|
|
|
static void
|
2013-07-09 13:31:15 +00:00
|
|
|
ges_audio_uri_source_get_property (GObject * object, guint property_id,
|
2009-09-21 10:51:16 +00:00
|
|
|
GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
2013-07-09 13:31:15 +00:00
|
|
|
GESAudioUriSource *uriclip = GES_AUDIO_URI_SOURCE (object);
|
2009-09-21 10:51:16 +00:00
|
|
|
|
|
|
|
switch (property_id) {
|
|
|
|
case PROP_URI:
|
2013-01-20 15:42:29 +00:00
|
|
|
g_value_set_string (value, uriclip->uri);
|
2009-09-21 10:51:16 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-07-09 13:31:15 +00:00
|
|
|
ges_audio_uri_source_set_property (GObject * object, guint property_id,
|
2009-09-21 10:51:16 +00:00
|
|
|
const GValue * value, GParamSpec * pspec)
|
|
|
|
{
|
2013-07-09 13:31:15 +00:00
|
|
|
GESAudioUriSource *uriclip = GES_AUDIO_URI_SOURCE (object);
|
2009-09-21 10:51:16 +00:00
|
|
|
|
|
|
|
switch (property_id) {
|
|
|
|
case PROP_URI:
|
2013-06-23 22:27:41 +00:00
|
|
|
if (uriclip->uri) {
|
|
|
|
GST_WARNING_OBJECT (object, "Uri already set to %s", uriclip->uri);
|
|
|
|
return;
|
|
|
|
}
|
2020-07-03 20:34:21 +00:00
|
|
|
uriclip->priv->uri = uriclip->uri = g_value_dup_string (value);
|
2009-09-21 10:51:16 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2020-06-24 15:11:11 +00:00
|
|
|
ges_audio_uri_source_finalize (GObject * object)
|
2009-09-21 10:51:16 +00:00
|
|
|
{
|
2013-07-09 13:31:15 +00:00
|
|
|
GESAudioUriSource *uriclip = GES_AUDIO_URI_SOURCE (object);
|
2010-03-13 14:51:16 +00:00
|
|
|
|
2020-06-24 15:11:11 +00:00
|
|
|
g_free (uriclip->uri);
|
2010-03-13 14:51:16 +00:00
|
|
|
|
2020-06-24 15:11:11 +00:00
|
|
|
G_OBJECT_CLASS (ges_audio_uri_source_parent_class)->finalize (object);
|
2009-09-21 10:51:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-07-09 13:31:15 +00:00
|
|
|
ges_audio_uri_source_class_init (GESAudioUriSourceClass * klass)
|
2009-09-21 10:51:16 +00:00
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
2020-02-18 18:21:38 +00:00
|
|
|
GESTimelineElementClass *element_class = GES_TIMELINE_ELEMENT_CLASS (klass);
|
2020-12-14 01:54:37 +00:00
|
|
|
GESSourceClass *src_class = GES_SOURCE_CLASS (klass);
|
2009-09-21 10:51:16 +00:00
|
|
|
|
2013-07-09 13:31:15 +00:00
|
|
|
object_class->get_property = ges_audio_uri_source_get_property;
|
|
|
|
object_class->set_property = ges_audio_uri_source_set_property;
|
2020-06-24 15:11:11 +00:00
|
|
|
object_class->finalize = ges_audio_uri_source_finalize;
|
2009-09-21 10:51:16 +00:00
|
|
|
|
|
|
|
/**
|
2013-07-09 13:31:15 +00:00
|
|
|
* GESAudioUriSource:uri:
|
2009-09-21 10:51:16 +00:00
|
|
|
*
|
|
|
|
* 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));
|
2013-05-16 01:27:20 +00:00
|
|
|
|
2020-02-18 18:21:38 +00:00
|
|
|
element_class->get_natural_framerate = _get_natural_framerate;
|
|
|
|
|
2020-12-14 01:54:37 +00:00
|
|
|
src_class->select_pad = ges_uri_source_select_pad;
|
2021-02-25 02:37:28 +00:00
|
|
|
src_class->create_source = ges_audio_uri_source_create_source;
|
2009-09-21 10:51:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-07-09 13:31:15 +00:00
|
|
|
ges_audio_uri_source_init (GESAudioUriSource * self)
|
2009-09-21 10:51:16 +00:00
|
|
|
{
|
2018-09-06 01:55:02 +00:00
|
|
|
self->priv = ges_audio_uri_source_get_instance_private (self);
|
2020-07-03 20:34:21 +00:00
|
|
|
ges_uri_source_init (GES_TRACK_ELEMENT (self), self->priv);
|
2009-09-21 10:51:16 +00:00
|
|
|
}
|
|
|
|
|
2011-01-10 13:28:35 +00:00
|
|
|
/**
|
2013-07-09 13:31:15 +00:00
|
|
|
* ges_audio_uri_source_new:
|
2011-01-10 13:28:35 +00:00
|
|
|
* @uri: the URI the source should control
|
|
|
|
*
|
2013-07-09 13:31:15 +00:00
|
|
|
* Creates a new #GESAudioUriSource for the provided @uri.
|
2011-01-10 13:28:35 +00:00
|
|
|
*
|
2016-05-14 23:04:17 +00:00
|
|
|
* Returns: (transfer floating) (nullable): The newly created
|
|
|
|
* #GESAudioUriSource, or %NULL if there was an error.
|
2011-01-10 13:28:35 +00:00
|
|
|
*/
|
2013-07-09 13:31:15 +00:00
|
|
|
GESAudioUriSource *
|
|
|
|
ges_audio_uri_source_new (gchar * uri)
|
2009-09-21 10:51:16 +00:00
|
|
|
{
|
2013-07-09 13:31:15 +00:00
|
|
|
return g_object_new (GES_TYPE_AUDIO_URI_SOURCE, "uri", uri, NULL);
|
2009-09-21 10:51:16 +00:00
|
|
|
}
|