2002-03-20 21:45:04 +00:00
|
|
|
/* GStreamer
|
2002-02-28 21:10:42 +00:00
|
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2002-03-01 17:25:42 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Code based on modplugxmms
|
|
|
|
XMMS plugin:
|
|
|
|
Kenton Varda <temporal@gauge3d.org>
|
|
|
|
Sound Engine:
|
|
|
|
Olivier Lapicque <olivierl@jps.net>
|
|
|
|
*/
|
2002-02-28 21:10:42 +00:00
|
|
|
|
|
|
|
#include "libmodplug/stdafx.h"
|
|
|
|
#include "libmodplug/sndfile.h"
|
|
|
|
|
|
|
|
#include "gstmodplug.h"
|
|
|
|
|
2002-06-09 19:00:27 +00:00
|
|
|
#include <gst/gst.h>
|
2002-02-28 21:10:42 +00:00
|
|
|
#include <stdlib.h>
|
2002-11-17 12:23:43 +00:00
|
|
|
#include <gst/audio/audio.h>
|
2002-02-28 21:10:42 +00:00
|
|
|
|
2002-09-18 19:02:52 +00:00
|
|
|
/* elementfactory information */
|
2002-02-28 21:10:42 +00:00
|
|
|
GstElementDetails modplug_details = {
|
|
|
|
"ModPlug",
|
2002-04-20 21:42:51 +00:00
|
|
|
"Codec/Audio/Decoder",
|
2002-09-18 19:02:52 +00:00
|
|
|
"LGPL",
|
2002-03-01 17:25:42 +00:00
|
|
|
"Module decoder based on modplug engine",
|
2002-02-28 21:10:42 +00:00
|
|
|
VERSION,
|
2003-07-06 20:49:52 +00:00
|
|
|
"Jeremy SIMON <jsimon13@yahoo.fr>\n"
|
|
|
|
"Kenton Varda <temporal@gauge3d.org>\n"
|
2002-03-01 17:25:42 +00:00
|
|
|
"Olivier Lapicque <olivierl@jps.net>",
|
2002-02-28 21:10:42 +00:00
|
|
|
"(C) 2001"
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Filter signals and args */
|
|
|
|
enum {
|
|
|
|
/* FILL ME */
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
ARG_0,
|
|
|
|
ARG_SONGNAME,
|
|
|
|
ARG_REVERB,
|
|
|
|
ARG_REVERB_DEPTH,
|
|
|
|
ARG_REVERB_DELAY,
|
|
|
|
ARG_MEGABASS,
|
|
|
|
ARG_MEGABASS_AMOUNT,
|
|
|
|
ARG_MEGABASS_RANGE,
|
|
|
|
ARG_NOISE_REDUCTION,
|
|
|
|
ARG_SURROUND,
|
|
|
|
ARG_SURROUND_DEPTH,
|
|
|
|
ARG_SURROUND_DELAY,
|
2002-12-30 17:21:45 +00:00
|
|
|
ARG_OVERSAMP,
|
|
|
|
ARG_METADATA,
|
|
|
|
ARG_STREAMINFO
|
2002-02-28 21:10:42 +00:00
|
|
|
};
|
|
|
|
|
2002-04-11 20:42:26 +00:00
|
|
|
GST_PAD_TEMPLATE_FACTORY (modplug_src_template_factory,
|
2002-02-28 21:10:42 +00:00
|
|
|
"src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
2003-07-06 20:49:52 +00:00
|
|
|
gst_caps_new (
|
2003-01-30 18:03:47 +00:00
|
|
|
"modplug_src",
|
2003-07-06 20:49:52 +00:00
|
|
|
"audio/x-raw-int",
|
|
|
|
GST_AUDIO_INT_PAD_TEMPLATE_PROPS
|
2002-02-28 21:10:42 +00:00
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2002-04-11 20:42:26 +00:00
|
|
|
GST_PAD_TEMPLATE_FACTORY (modplug_sink_template_factory,
|
2002-02-28 21:10:42 +00:00
|
|
|
"sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_CAPS_NEW (
|
2002-11-17 12:23:43 +00:00
|
|
|
"modplug_sink",
|
2002-12-30 17:21:45 +00:00
|
|
|
"audio/x-mod",
|
2002-02-28 21:10:42 +00:00
|
|
|
NULL
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
enum {
|
|
|
|
MODPLUG_STATE_NEED_TUNE = 1,
|
|
|
|
MODPLUG_STATE_LOAD_TUNE = 2,
|
|
|
|
MODPLUG_STATE_PLAY_TUNE = 3,
|
|
|
|
};
|
|
|
|
|
2002-02-28 21:10:42 +00:00
|
|
|
|
2003-07-06 20:49:52 +00:00
|
|
|
static void gst_modplug_class_init (GstModPlugClass *klass);
|
|
|
|
static void gst_modplug_init (GstModPlug *filter);
|
|
|
|
static void gst_modplug_set_property (GObject *object,
|
|
|
|
guint id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec );
|
|
|
|
static void gst_modplug_get_property (GObject *object,
|
|
|
|
guint id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec );
|
|
|
|
static GstPadLinkReturn
|
|
|
|
gst_modplug_srclink (GstPad *pad, GstCaps *caps);
|
|
|
|
static void gst_modplug_loop (GstElement *element);
|
|
|
|
static void gst_modplug_setup (GstModPlug *modplug);
|
|
|
|
static const GstFormat *
|
|
|
|
gst_modplug_get_formats (GstPad *pad);
|
|
|
|
static const GstQueryType *
|
|
|
|
gst_modplug_get_query_types (GstPad *pad);
|
|
|
|
static gboolean gst_modplug_src_event (GstPad *pad, GstEvent *event);
|
|
|
|
static gboolean gst_modplug_src_query (GstPad *pad,
|
|
|
|
GstQueryType type,
|
|
|
|
GstFormat *format,
|
|
|
|
gint64 *value);
|
2002-06-09 19:00:27 +00:00
|
|
|
static GstElementStateReturn
|
2003-07-06 20:49:52 +00:00
|
|
|
gst_modplug_change_state (GstElement *element);
|
2002-02-28 21:10:42 +00:00
|
|
|
|
|
|
|
static GstElementClass *parent_class = NULL;
|
|
|
|
|
2002-11-17 12:23:43 +00:00
|
|
|
static GstCaps*
|
2003-10-01 13:14:50 +00:00
|
|
|
modplug_type_find (GstByteStream *bs, gpointer priv)
|
|
|
|
{
|
|
|
|
GstBuffer *buf = NULL;
|
|
|
|
GstCaps *newc = NULL;
|
|
|
|
|
|
|
|
if (gst_bytestream_peek (bs, &buf, 75) == 75) {
|
|
|
|
if (MOD_CheckType (buf) ||
|
|
|
|
Mod_669_CheckType (buf) ||
|
|
|
|
Amf_CheckType (buf) ||
|
|
|
|
Dsm_CheckType (buf) ||
|
|
|
|
Fam_CheckType (buf) ||
|
|
|
|
Gdm_CheckType (buf) ||
|
|
|
|
Imf_CheckType (buf) ||
|
|
|
|
It_CheckType (buf) ||
|
|
|
|
M15_CheckType (buf) ||
|
|
|
|
#if 0
|
|
|
|
Med_CheckType (buf) || /* FIXME */
|
|
|
|
#endif
|
|
|
|
Mtm_CheckType (buf) ||
|
|
|
|
Okt_CheckType (buf) ||
|
|
|
|
S3m_CheckType (buf) ||
|
|
|
|
Xm_CheckType (buf)) {
|
|
|
|
newc = GST_CAPS_NEW ("modplug_type_find",
|
|
|
|
"audio/x-mod",
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (buf != NULL) {
|
|
|
|
gst_buffer_unref (buf);
|
2003-07-06 20:49:52 +00:00
|
|
|
}
|
2003-10-01 13:14:50 +00:00
|
|
|
|
|
|
|
return newc;
|
2002-11-17 12:23:43 +00:00
|
|
|
}
|
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
static GstTypeDefinition modplug_definitions[] = {
|
2003-07-06 20:49:52 +00:00
|
|
|
{ "modplug_audio/mod", "audio/x-mod",
|
|
|
|
".mod .sam .med .stm .mtm .669 .ult .far .amf "
|
|
|
|
".dsm .imf .gdm .stx .okt .xm .it .s3m",
|
|
|
|
modplug_type_find },
|
2002-12-30 17:21:45 +00:00
|
|
|
{ NULL, NULL, NULL, NULL }
|
2002-11-17 12:23:43 +00:00
|
|
|
};
|
|
|
|
|
2002-02-28 21:10:42 +00:00
|
|
|
GType
|
|
|
|
gst_modplug_get_type(void) {
|
|
|
|
static GType modplug_type = 0;
|
|
|
|
|
|
|
|
if (!modplug_type) {
|
|
|
|
static const GTypeInfo modplug_info = {
|
|
|
|
sizeof(GstModPlugClass),
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
(GClassInitFunc)gst_modplug_class_init,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
sizeof(GstModPlug),
|
|
|
|
0,
|
|
|
|
(GInstanceInitFunc)gst_modplug_init,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
modplug_type = g_type_register_static(GST_TYPE_ELEMENT, "GstModPlug", &modplug_info, (GTypeFlags)0);
|
|
|
|
}
|
|
|
|
return modplug_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_modplug_class_init (GstModPlugClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GstElementClass *gstelement_class;
|
|
|
|
|
|
|
|
gobject_class = (GObjectClass*)klass;
|
|
|
|
gstelement_class = (GstElementClass*)klass;
|
|
|
|
|
|
|
|
parent_class = GST_ELEMENT_CLASS( g_type_class_ref(GST_TYPE_ELEMENT));
|
|
|
|
|
|
|
|
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_SONGNAME,
|
|
|
|
g_param_spec_string("songname","Songname","The song name",
|
|
|
|
"", G_PARAM_READABLE));
|
|
|
|
|
|
|
|
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_REVERB,
|
|
|
|
g_param_spec_boolean("reverb", "reverb", "reverb",
|
|
|
|
FALSE, (GParamFlags)G_PARAM_READWRITE ));
|
|
|
|
|
|
|
|
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_REVERB_DEPTH,
|
|
|
|
g_param_spec_int("reverb_depth", "reverb_depth", "reverb_depth",
|
|
|
|
0, 100, 30, (GParamFlags)G_PARAM_READWRITE ));
|
|
|
|
|
|
|
|
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_REVERB_DELAY,
|
|
|
|
g_param_spec_int("reverb_delay", "reverb_delay", "reverb_delay",
|
|
|
|
0, 200, 100, (GParamFlags)G_PARAM_READWRITE ));
|
|
|
|
|
|
|
|
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_MEGABASS,
|
|
|
|
g_param_spec_boolean("megabass", "megabass", "megabass",
|
|
|
|
FALSE, (GParamFlags)G_PARAM_READWRITE ));
|
|
|
|
|
|
|
|
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_MEGABASS_AMOUNT,
|
|
|
|
g_param_spec_int("megabass_amount", "megabass_amount", "megabass_amount",
|
|
|
|
0, 100, 40, (GParamFlags)G_PARAM_READWRITE ));
|
|
|
|
|
|
|
|
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_MEGABASS_RANGE,
|
|
|
|
g_param_spec_int("megabass_range", "megabass_range", "megabass_range",
|
|
|
|
0, 100, 30, (GParamFlags)G_PARAM_READWRITE ));
|
|
|
|
|
|
|
|
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_SURROUND,
|
|
|
|
g_param_spec_boolean("surround", "surround", "surround",
|
|
|
|
TRUE, (GParamFlags)G_PARAM_READWRITE ));
|
|
|
|
|
|
|
|
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_SURROUND_DEPTH,
|
|
|
|
g_param_spec_int("surround_depth", "surround_depth", "surround_depth",
|
|
|
|
0, 100, 20, (GParamFlags)G_PARAM_READWRITE ));
|
|
|
|
|
|
|
|
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_SURROUND_DELAY,
|
|
|
|
g_param_spec_int("surround_delay", "surround_delay", "surround_delay",
|
|
|
|
0, 40, 20, (GParamFlags)G_PARAM_READWRITE ));
|
|
|
|
|
|
|
|
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_OVERSAMP,
|
|
|
|
g_param_spec_boolean("oversamp", "oversamp", "oversamp",
|
|
|
|
TRUE, (GParamFlags)G_PARAM_READWRITE ));
|
|
|
|
|
|
|
|
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_NOISE_REDUCTION,
|
|
|
|
g_param_spec_boolean("noise_reduction", "noise_reduction", "noise_reduction",
|
|
|
|
TRUE, (GParamFlags)G_PARAM_READWRITE ));
|
2002-12-30 17:21:45 +00:00
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, ARG_METADATA,
|
|
|
|
g_param_spec_boxed ("metadata", "Metadata", "Metadata",
|
|
|
|
GST_TYPE_CAPS, G_PARAM_READABLE));
|
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class, ARG_STREAMINFO,
|
|
|
|
g_param_spec_boxed ("streaminfo", "Streaminfo", "Streaminfo",
|
|
|
|
GST_TYPE_CAPS, G_PARAM_READABLE));
|
2002-02-28 21:10:42 +00:00
|
|
|
|
|
|
|
gobject_class->set_property = gst_modplug_set_property;
|
|
|
|
gobject_class->get_property = gst_modplug_get_property;
|
|
|
|
|
|
|
|
gstelement_class->change_state = gst_modplug_change_state;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_modplug_init (GstModPlug *modplug)
|
|
|
|
{
|
2002-12-30 17:21:45 +00:00
|
|
|
modplug->sinkpad = gst_pad_new_from_template (GST_PAD_TEMPLATE_GET (modplug_sink_template_factory), "sink");
|
|
|
|
gst_element_add_pad (GST_ELEMENT(modplug), modplug->sinkpad);
|
2002-11-17 12:23:43 +00:00
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
modplug->srcpad = gst_pad_new_from_template (GST_PAD_TEMPLATE_GET (modplug_src_template_factory), "src");
|
|
|
|
gst_element_add_pad (GST_ELEMENT(modplug), modplug->srcpad);
|
2003-07-06 20:49:52 +00:00
|
|
|
gst_pad_set_link_function (modplug->srcpad, gst_modplug_srclink);
|
2002-02-28 21:10:42 +00:00
|
|
|
|
2002-06-09 19:00:27 +00:00
|
|
|
gst_pad_set_event_function (modplug->srcpad, (GstPadEventFunction)GST_DEBUG_FUNCPTR(gst_modplug_src_event));
|
|
|
|
gst_pad_set_query_function (modplug->srcpad, gst_modplug_src_query);
|
2002-12-30 17:21:45 +00:00
|
|
|
gst_pad_set_query_type_function (modplug->srcpad, (GstPadQueryTypeFunction) GST_DEBUG_FUNCPTR (gst_modplug_get_query_types));
|
|
|
|
gst_pad_set_formats_function (modplug->srcpad, (GstPadFormatsFunction)GST_DEBUG_FUNCPTR (gst_modplug_get_formats));
|
2002-11-17 12:23:43 +00:00
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
gst_element_set_loop_function (GST_ELEMENT (modplug), gst_modplug_loop);
|
2002-02-28 21:10:42 +00:00
|
|
|
|
|
|
|
modplug->reverb = FALSE;
|
|
|
|
modplug->reverb_depth = 30;
|
|
|
|
modplug->reverb_delay = 100;
|
|
|
|
modplug->megabass = FALSE;
|
|
|
|
modplug->megabass_amount = 40;
|
|
|
|
modplug->megabass_range = 30;
|
|
|
|
modplug->surround = TRUE;
|
|
|
|
modplug->surround_depth = 20;
|
|
|
|
modplug->surround_delay = 20;
|
|
|
|
modplug->oversamp = TRUE;
|
|
|
|
modplug->noise_reduction = TRUE;
|
|
|
|
|
|
|
|
modplug->_16bit = TRUE;
|
|
|
|
modplug->channel = 2;
|
|
|
|
modplug->frequency = 44100;
|
2003-06-27 23:46:13 +00:00
|
|
|
modplug->audiobuffer = NULL;
|
|
|
|
modplug->buffer_in = NULL;
|
2003-01-20 21:02:58 +00:00
|
|
|
|
|
|
|
modplug->state = MODPLUG_STATE_NEED_TUNE;
|
2002-02-28 21:10:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_modplug_setup (GstModPlug *modplug)
|
|
|
|
{
|
2002-12-30 17:21:45 +00:00
|
|
|
if (modplug->_16bit)
|
|
|
|
modplug->mSoundFile->SetWaveConfig (modplug->frequency, 16, modplug->channel);
|
2002-02-28 21:10:42 +00:00
|
|
|
else
|
2002-12-30 17:21:45 +00:00
|
|
|
modplug->mSoundFile->SetWaveConfig (modplug->frequency, 8, modplug->channel);
|
2002-02-28 21:10:42 +00:00
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
modplug->mSoundFile->SetWaveConfigEx (modplug->surround, !modplug->oversamp, modplug->reverb, true, modplug->megabass, modplug->noise_reduction, true);
|
|
|
|
modplug->mSoundFile->SetResamplingMode (SRCMODE_POLYPHASE);
|
2002-02-28 21:10:42 +00:00
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
if (modplug->surround)
|
|
|
|
modplug->mSoundFile->SetSurroundParameters (modplug->surround_depth, modplug->surround_delay);
|
2002-02-28 21:10:42 +00:00
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
if (modplug->megabass)
|
|
|
|
modplug->mSoundFile->SetXBassParameters (modplug->megabass_amount, modplug->megabass_range);
|
2002-02-28 21:10:42 +00:00
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
if (modplug->reverb)
|
|
|
|
modplug->mSoundFile->SetReverbParameters (modplug->reverb_depth, modplug->reverb_delay);
|
2002-02-28 21:10:42 +00:00
|
|
|
|
|
|
|
}
|
2002-06-09 19:00:27 +00:00
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
static const GstFormat*
|
|
|
|
gst_modplug_get_formats (GstPad *pad)
|
|
|
|
{
|
|
|
|
static const GstFormat src_formats[] = {
|
|
|
|
/* GST_FORMAT_BYTES,
|
2003-05-24 10:41:58 +00:00
|
|
|
GST_FORMAT_DEFAULT,*/
|
2002-12-30 17:21:45 +00:00
|
|
|
GST_FORMAT_TIME,
|
|
|
|
(GstFormat)0
|
|
|
|
};
|
|
|
|
static const GstFormat sink_formats[] = {
|
|
|
|
/*GST_FORMAT_BYTES,*/
|
|
|
|
GST_FORMAT_TIME,
|
|
|
|
(GstFormat)0
|
|
|
|
};
|
|
|
|
|
|
|
|
return (GST_PAD_IS_SRC (pad) ? src_formats : sink_formats);
|
|
|
|
}
|
2002-06-09 19:00:27 +00:00
|
|
|
|
2002-12-30 17:53:18 +00:00
|
|
|
static const GstQueryType*
|
2002-12-30 17:21:45 +00:00
|
|
|
gst_modplug_get_query_types (GstPad *pad)
|
|
|
|
{
|
2002-12-30 17:53:18 +00:00
|
|
|
static const GstQueryType gst_modplug_src_query_types[] = {
|
|
|
|
GST_QUERY_TOTAL,
|
|
|
|
GST_QUERY_POSITION,
|
|
|
|
(GstQueryType)0
|
2002-12-30 17:21:45 +00:00
|
|
|
};
|
2003-01-20 21:02:58 +00:00
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
return gst_modplug_src_query_types;
|
|
|
|
}
|
2003-01-19 21:20:40 +00:00
|
|
|
|
|
|
|
|
2002-06-09 19:00:27 +00:00
|
|
|
static gboolean
|
2002-12-30 17:53:18 +00:00
|
|
|
gst_modplug_src_query (GstPad *pad, GstQueryType type,
|
2002-06-09 19:00:27 +00:00
|
|
|
GstFormat *format, gint64 *value)
|
|
|
|
{
|
|
|
|
gboolean res = TRUE;
|
|
|
|
GstModPlug *modplug;
|
2002-12-07 15:28:24 +00:00
|
|
|
gfloat tmp;
|
2002-06-09 19:00:27 +00:00
|
|
|
|
|
|
|
modplug = GST_MODPLUG (gst_pad_get_parent (pad));
|
|
|
|
|
|
|
|
switch (type) {
|
2002-12-30 17:53:18 +00:00
|
|
|
case GST_QUERY_TOTAL:
|
2002-06-09 19:00:27 +00:00
|
|
|
switch (*format) {
|
2002-12-30 17:21:45 +00:00
|
|
|
case GST_FORMAT_TIME:
|
|
|
|
*value=(gint64)modplug->mSoundFile->GetSongTime() * GST_SECOND;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
res = FALSE;
|
|
|
|
break;
|
2002-06-09 19:00:27 +00:00
|
|
|
}
|
|
|
|
break;
|
2002-12-30 17:53:18 +00:00
|
|
|
case GST_QUERY_POSITION:
|
2002-06-09 19:00:27 +00:00
|
|
|
switch (*format) {
|
2002-12-30 17:21:45 +00:00
|
|
|
default:
|
|
|
|
tmp = ((float)( modplug->mSoundFile->GetSongTime() * modplug->mSoundFile->GetCurrentPos() ) / (float)modplug->mSoundFile->GetMaxPosition() );
|
|
|
|
*value=(gint64)(tmp * GST_SECOND);
|
|
|
|
break;
|
2002-06-09 19:00:27 +00:00
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
2002-12-07 15:28:24 +00:00
|
|
|
|
2002-06-09 19:00:27 +00:00
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_modplug_src_event (GstPad *pad, GstEvent *event)
|
|
|
|
{
|
|
|
|
gboolean res = TRUE;
|
|
|
|
GstModPlug *modplug;
|
|
|
|
|
|
|
|
modplug = GST_MODPLUG (gst_pad_get_parent (pad));
|
|
|
|
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
2002-12-30 17:21:45 +00:00
|
|
|
/* the all-formats seek logic */
|
|
|
|
case GST_EVENT_SEEK:
|
|
|
|
{
|
|
|
|
gboolean flush;
|
|
|
|
GstFormat format;
|
2002-06-09 19:00:27 +00:00
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
format = GST_FORMAT_TIME;
|
2002-06-09 19:00:27 +00:00
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
/* shave off the flush flag, we'll need it later */
|
|
|
|
flush = GST_EVENT_SEEK_FLAGS (event) & GST_SEEK_FLAG_FLUSH;
|
2002-06-09 19:00:27 +00:00
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
modplug->seek_at = GST_EVENT_SEEK_OFFSET (event);
|
2003-01-20 22:42:57 +00:00
|
|
|
break;
|
2002-12-30 17:21:45 +00:00
|
|
|
}
|
|
|
|
default:
|
|
|
|
res = FALSE;
|
|
|
|
break;
|
2002-06-09 19:00:27 +00:00
|
|
|
}
|
2002-12-30 17:21:45 +00:00
|
|
|
|
2002-07-08 19:42:06 +00:00
|
|
|
gst_event_unref (event);
|
2002-06-09 19:00:27 +00:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
static GstCaps*
|
|
|
|
gst_modplug_get_streaminfo (GstModPlug *modplug)
|
|
|
|
{
|
|
|
|
GstCaps *caps;
|
|
|
|
GstProps *props;
|
|
|
|
GstPropsEntry *entry;
|
|
|
|
|
|
|
|
props = gst_props_empty_new ();
|
|
|
|
|
|
|
|
entry = gst_props_entry_new ("Patterns", GST_PROPS_INT ((gint)modplug->mSoundFile->GetNumPatterns()));
|
|
|
|
gst_props_add_entry (props, (GstPropsEntry *) entry);
|
|
|
|
|
2003-01-19 21:20:40 +00:00
|
|
|
caps = gst_caps_new ("mad_streaminfo", "application/x-gst-streaminfo",
|
|
|
|
props);
|
2002-12-30 17:21:45 +00:00
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
|
2002-02-28 21:10:42 +00:00
|
|
|
|
|
|
|
static void
|
2002-12-30 17:21:45 +00:00
|
|
|
gst_modplug_update_info (GstModPlug *modplug)
|
|
|
|
{
|
|
|
|
if (modplug->streaminfo) {
|
|
|
|
gst_caps_unref (modplug->streaminfo);
|
|
|
|
}
|
2003-01-19 21:20:40 +00:00
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
modplug->streaminfo = gst_modplug_get_streaminfo (modplug);
|
|
|
|
g_object_notify (G_OBJECT (modplug), "streaminfo");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_modplug_update_metadata (GstModPlug *modplug)
|
|
|
|
{
|
|
|
|
GstProps *props;
|
|
|
|
GstPropsEntry *entry;
|
|
|
|
const gchar *title;
|
|
|
|
|
|
|
|
props = gst_props_empty_new ();
|
|
|
|
|
|
|
|
title = modplug->mSoundFile->GetTitle();
|
|
|
|
entry = gst_props_entry_new ("Title", GST_PROPS_STRING (title));
|
|
|
|
gst_props_add_entry (props, entry);
|
|
|
|
|
|
|
|
modplug->metadata = gst_caps_new ("modplug_metadata",
|
|
|
|
"application/x-gst-metadata",
|
2003-01-19 21:20:40 +00:00
|
|
|
props);
|
2002-12-30 17:21:45 +00:00
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (modplug), "metadata");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-06 20:49:52 +00:00
|
|
|
static GstPadLinkReturn
|
2002-12-30 17:21:45 +00:00
|
|
|
modplug_negotiate (GstModPlug *modplug)
|
2002-02-28 21:10:42 +00:00
|
|
|
{
|
2003-07-06 20:49:52 +00:00
|
|
|
GstPadLinkReturn ret = GST_PAD_LINK_OK;
|
2003-01-30 18:03:47 +00:00
|
|
|
gboolean sign;
|
2002-12-30 17:21:45 +00:00
|
|
|
modplug->length = 1152 * modplug->channel;
|
|
|
|
|
|
|
|
if (modplug->_16bit)
|
2002-12-07 15:28:24 +00:00
|
|
|
{
|
2002-12-30 17:21:45 +00:00
|
|
|
modplug->length *= 2;
|
|
|
|
modplug->bitsPerSample = 16;
|
2003-01-30 18:03:47 +00:00
|
|
|
sign = TRUE;
|
2002-12-30 17:21:45 +00:00
|
|
|
}
|
2003-01-30 18:03:47 +00:00
|
|
|
else {
|
2002-12-30 17:21:45 +00:00
|
|
|
modplug->bitsPerSample = 8;
|
2003-01-30 18:03:47 +00:00
|
|
|
sign = FALSE;
|
|
|
|
}
|
2002-12-07 15:28:24 +00:00
|
|
|
|
2003-07-06 20:49:52 +00:00
|
|
|
if ((ret = gst_pad_try_set_caps (modplug->srcpad,
|
|
|
|
GST_CAPS_NEW (
|
|
|
|
"modplug_src",
|
|
|
|
"audio/x-raw-int",
|
|
|
|
"endianness", GST_PROPS_INT (G_BYTE_ORDER),
|
|
|
|
"signed", GST_PROPS_BOOLEAN (sign),
|
|
|
|
"width", GST_PROPS_INT (modplug->bitsPerSample),
|
|
|
|
"depth", GST_PROPS_INT (modplug->bitsPerSample),
|
|
|
|
"rate", GST_PROPS_INT (modplug->frequency),
|
|
|
|
"channels", GST_PROPS_INT (modplug->channel),
|
|
|
|
NULL)
|
|
|
|
)) <= 0) {
|
|
|
|
return ret;
|
2002-12-07 15:28:24 +00:00
|
|
|
}
|
2002-03-01 17:25:42 +00:00
|
|
|
|
2003-07-06 20:49:52 +00:00
|
|
|
gst_modplug_setup (modplug);
|
2002-06-09 19:00:27 +00:00
|
|
|
|
2003-07-06 20:49:52 +00:00
|
|
|
return ret;
|
2002-12-30 17:21:45 +00:00
|
|
|
}
|
2002-06-09 19:00:27 +00:00
|
|
|
|
2003-01-20 21:02:58 +00:00
|
|
|
|
2003-07-06 20:49:52 +00:00
|
|
|
static GstPadLinkReturn
|
|
|
|
gst_modplug_srclink (GstPad *pad, GstCaps *caps)
|
|
|
|
{
|
|
|
|
GstModPlug *modplug;
|
|
|
|
|
|
|
|
modplug = GST_MODPLUG (gst_pad_get_parent (pad));
|
|
|
|
|
|
|
|
if (gst_caps_has_property_typed (caps, "depth", GST_PROPS_INT_TYPE)) {
|
|
|
|
gint depth;
|
|
|
|
gst_caps_get_int (caps, "depth", &depth);
|
|
|
|
modplug->_16bit = (depth == 16);
|
|
|
|
}
|
|
|
|
if (gst_caps_has_property_typed (caps, "channels", GST_PROPS_INT_TYPE)) {
|
|
|
|
gst_caps_get_int (caps, "channels", &modplug->channel);
|
|
|
|
}
|
|
|
|
if (gst_caps_has_property_typed (caps, "rate", GST_PROPS_INT_TYPE)) {
|
|
|
|
gst_caps_get_int (caps, "rate", &modplug->frequency);
|
|
|
|
}
|
|
|
|
|
|
|
|
return modplug_negotiate(modplug);
|
|
|
|
}
|
|
|
|
|
2003-01-20 21:02:58 +00:00
|
|
|
static void
|
|
|
|
gst_modplug_handle_event (GstModPlug *modplug)
|
|
|
|
{
|
|
|
|
guint32 remaining;
|
|
|
|
GstEvent *event;
|
|
|
|
|
|
|
|
gst_bytestream_get_status (modplug->bs, &remaining, &event);
|
|
|
|
|
|
|
|
if (!event) {
|
|
|
|
g_warning ("modplug: no bytestream event");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
case GST_EVENT_DISCONTINUOUS:
|
|
|
|
gst_bytestream_flush_fast (modplug->bs, remaining);
|
|
|
|
default:
|
|
|
|
gst_pad_event_default (modplug->sinkpad, event);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
static void
|
|
|
|
gst_modplug_loop (GstElement *element)
|
|
|
|
{
|
|
|
|
GstModPlug *modplug;
|
|
|
|
GstEvent *event;
|
|
|
|
|
|
|
|
g_return_if_fail (element != NULL);
|
|
|
|
g_return_if_fail (GST_IS_MODPLUG (element));
|
|
|
|
|
|
|
|
modplug = GST_MODPLUG (element);
|
2003-01-19 21:20:40 +00:00
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
if (modplug->state == MODPLUG_STATE_NEED_TUNE)
|
|
|
|
{
|
2003-01-19 21:20:40 +00:00
|
|
|
/* GstBuffer *buf;*/
|
2003-01-20 21:02:58 +00:00
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
modplug->seek_at = -1;
|
|
|
|
modplug->need_discont = FALSE;
|
|
|
|
modplug->eos = FALSE;
|
2003-01-19 21:20:40 +00:00
|
|
|
/*
|
2002-12-30 17:21:45 +00:00
|
|
|
buf = gst_pad_pull (modplug->sinkpad);
|
|
|
|
g_assert (buf != NULL);
|
2002-11-17 12:23:43 +00:00
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
if (GST_IS_EVENT (buf)) {
|
|
|
|
GstEvent *event = GST_EVENT (buf);
|
|
|
|
|
|
|
|
switch (GST_EVENT_TYPE (buf)) {
|
2003-01-12 21:23:49 +00:00
|
|
|
case GST_EVENT_EOS:
|
|
|
|
modplug->state = MODPLUG_STATE_LOAD_TUNE;
|
|
|
|
break;
|
|
|
|
case GST_EVENT_DISCONTINUOUS:
|
|
|
|
break;
|
|
|
|
default:
|
2003-01-19 21:20:40 +00:00
|
|
|
bail out, we're not going to do anything
|
2003-01-12 21:23:49 +00:00
|
|
|
gst_event_unref (event);
|
|
|
|
gst_pad_send_event (modplug->srcpad, gst_event_new (GST_EVENT_EOS));
|
|
|
|
gst_element_set_eos (element);
|
|
|
|
return;
|
2002-12-30 17:21:45 +00:00
|
|
|
}
|
|
|
|
gst_event_unref (event);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
memcpy (modplug->buffer_in + modplug->song_size, GST_BUFFER_DATA (buf), GST_BUFFER_SIZE (buf));
|
|
|
|
modplug->song_size += GST_BUFFER_SIZE (buf);
|
2002-06-11 19:12:51 +00:00
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
gst_buffer_unref (buf);
|
|
|
|
}
|
2003-01-19 21:20:40 +00:00
|
|
|
*/
|
|
|
|
|
2003-01-20 21:02:58 +00:00
|
|
|
if (modplug->bs)
|
|
|
|
{
|
|
|
|
guint64 got;
|
|
|
|
|
|
|
|
modplug->song_size = gst_bytestream_length (modplug->bs);
|
|
|
|
|
|
|
|
got = gst_bytestream_peek_bytes (modplug->bs, &modplug->buffer_in, modplug->song_size);
|
|
|
|
|
|
|
|
if ( got < modplug->song_size )
|
|
|
|
{
|
|
|
|
gst_modplug_handle_event (modplug);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
modplug->state = MODPLUG_STATE_LOAD_TUNE;
|
|
|
|
}
|
2002-12-30 17:21:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (modplug->state == MODPLUG_STATE_LOAD_TUNE)
|
|
|
|
{
|
|
|
|
modplug->mSoundFile = new CSoundFile;
|
|
|
|
|
2003-07-06 20:49:52 +00:00
|
|
|
if (!GST_PAD_CAPS (modplug->srcpad) &&
|
|
|
|
modplug_negotiate (modplug) <= 0) {
|
2003-09-16 10:00:00 +00:00
|
|
|
gst_element_error (GST_ELEMENT (modplug), "could not negotiate format");
|
2002-12-30 17:21:45 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
modplug->mSoundFile->Create (modplug->buffer_in, modplug->song_size);
|
2003-06-27 23:46:13 +00:00
|
|
|
modplug->opened = TRUE;
|
2002-12-30 17:21:45 +00:00
|
|
|
|
2003-01-20 21:24:37 +00:00
|
|
|
gst_bytestream_flush (modplug->bs, modplug->song_size);
|
|
|
|
modplug->buffer_in = NULL;
|
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
modplug->audiobuffer = (guchar *) g_malloc (modplug->length);
|
|
|
|
|
|
|
|
gst_modplug_update_metadata (modplug);
|
|
|
|
gst_modplug_update_info (modplug);
|
|
|
|
|
|
|
|
modplug->state = MODPLUG_STATE_PLAY_TUNE;
|
|
|
|
}
|
|
|
|
|
2003-01-20 21:02:58 +00:00
|
|
|
if (modplug->state == MODPLUG_STATE_PLAY_TUNE && !modplug->eos)
|
2002-12-30 17:21:45 +00:00
|
|
|
{
|
2002-12-07 15:28:24 +00:00
|
|
|
if (modplug->seek_at != -1)
|
|
|
|
{
|
2002-12-30 17:21:45 +00:00
|
|
|
gint seek_to_pos;
|
2002-12-07 15:28:24 +00:00
|
|
|
gint64 total;
|
2002-12-30 17:21:45 +00:00
|
|
|
gfloat temp;
|
|
|
|
|
|
|
|
total = modplug->mSoundFile->GetSongTime () * GST_SECOND;
|
2002-06-11 19:12:51 +00:00
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
temp = (gfloat) total / modplug->seek_at;
|
|
|
|
seek_to_pos = (int) (modplug->mSoundFile->GetMaxPosition () / temp);
|
2002-06-11 19:12:51 +00:00
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
modplug->mSoundFile->SetCurrentPos (seek_to_pos);
|
|
|
|
modplug->need_discont = TRUE;
|
|
|
|
modplug->seek_at = -1;
|
2002-12-07 15:28:24 +00:00
|
|
|
}
|
2002-12-30 17:21:45 +00:00
|
|
|
|
|
|
|
if (modplug->mSoundFile->Read (modplug->audiobuffer, modplug->length) != 0)
|
|
|
|
{
|
|
|
|
GstBuffer *buffer_out;
|
|
|
|
GstFormat format;
|
|
|
|
gint64 value;
|
2003-01-19 21:20:40 +00:00
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
format = GST_FORMAT_TIME;
|
2002-12-30 17:53:18 +00:00
|
|
|
gst_modplug_src_query (modplug->srcpad, GST_QUERY_POSITION, &format, &value);
|
2002-12-30 17:21:45 +00:00
|
|
|
|
|
|
|
if (modplug->need_discont && GST_PAD_IS_USABLE (modplug->srcpad))
|
|
|
|
{
|
|
|
|
GstEvent *discont;
|
|
|
|
|
|
|
|
discont = gst_event_new_discontinuous (FALSE, GST_FORMAT_TIME, value, NULL);
|
2003-10-08 16:08:19 +00:00
|
|
|
gst_pad_push (modplug->srcpad, GST_DATA (discont));
|
2002-12-30 17:21:45 +00:00
|
|
|
|
|
|
|
modplug->need_discont= FALSE;
|
|
|
|
}
|
2002-06-11 19:12:51 +00:00
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
buffer_out = gst_buffer_new ();
|
|
|
|
GST_BUFFER_DATA (buffer_out) = (guchar *) g_memdup (modplug->audiobuffer, modplug->length);
|
|
|
|
GST_BUFFER_SIZE (buffer_out) = modplug->length;
|
|
|
|
GST_BUFFER_TIMESTAMP (buffer_out) = value;
|
|
|
|
|
2003-01-19 21:20:40 +00:00
|
|
|
if (GST_PAD_IS_USABLE (modplug->srcpad))
|
2003-10-08 16:08:19 +00:00
|
|
|
gst_pad_push (modplug->srcpad, GST_DATA (buffer_out));
|
2002-12-30 17:21:45 +00:00
|
|
|
}
|
|
|
|
else
|
2003-01-20 21:24:37 +00:00
|
|
|
if (GST_PAD_IS_LINKED (modplug->srcpad))
|
2002-12-30 17:21:45 +00:00
|
|
|
{
|
2003-01-20 21:24:37 +00:00
|
|
|
/* FIXME, hack, pull final EOS from peer */
|
|
|
|
gst_bytestream_flush (modplug->bs, 1);
|
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
event = gst_event_new (GST_EVENT_EOS);
|
2003-10-08 16:08:19 +00:00
|
|
|
gst_pad_push (modplug->srcpad, GST_DATA (event));
|
2003-01-20 21:02:58 +00:00
|
|
|
gst_element_set_eos (element);
|
|
|
|
modplug->eos = TRUE;
|
2002-12-30 17:21:45 +00:00
|
|
|
}
|
2002-12-07 15:28:24 +00:00
|
|
|
}
|
2002-02-28 21:10:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static GstElementStateReturn
|
|
|
|
gst_modplug_change_state (GstElement *element)
|
|
|
|
{
|
2002-06-09 19:00:27 +00:00
|
|
|
GstModPlug *modplug;
|
2002-02-28 21:10:42 +00:00
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
modplug = GST_MODPLUG (element);
|
2002-02-28 21:10:42 +00:00
|
|
|
|
2002-06-09 19:00:27 +00:00
|
|
|
switch (GST_STATE_TRANSITION (element)) {
|
|
|
|
case GST_STATE_NULL_TO_READY:
|
2003-01-19 21:20:40 +00:00
|
|
|
break;
|
|
|
|
case GST_STATE_READY_TO_PAUSED:
|
|
|
|
modplug->bs = gst_bytestream_new (modplug->sinkpad);
|
2002-12-30 17:21:45 +00:00
|
|
|
modplug->song_size = 0;
|
2003-01-12 21:23:49 +00:00
|
|
|
modplug->state = MODPLUG_STATE_NEED_TUNE;
|
|
|
|
modplug->metadata = NULL;
|
|
|
|
modplug->streaminfo = NULL;
|
2002-06-09 19:00:27 +00:00
|
|
|
break;
|
|
|
|
case GST_STATE_PAUSED_TO_PLAYING:
|
|
|
|
break;
|
|
|
|
case GST_STATE_PLAYING_TO_PAUSED:
|
|
|
|
break;
|
2003-01-19 21:20:40 +00:00
|
|
|
case GST_STATE_PAUSED_TO_READY:
|
|
|
|
gst_bytestream_destroy (modplug->bs);
|
2003-06-27 23:46:13 +00:00
|
|
|
modplug->bs = NULL;
|
|
|
|
if (modplug->opened)
|
|
|
|
{
|
|
|
|
modplug->mSoundFile->Destroy ();
|
|
|
|
modplug->opened = FALSE;
|
|
|
|
}
|
|
|
|
if (modplug->audiobuffer) g_free (modplug->audiobuffer);
|
2003-01-19 21:20:40 +00:00
|
|
|
modplug->buffer_in = NULL;
|
2003-01-20 21:24:37 +00:00
|
|
|
modplug->audiobuffer = NULL;
|
2003-01-20 21:02:58 +00:00
|
|
|
gst_caps_unref (modplug->streaminfo);
|
2003-01-19 21:20:40 +00:00
|
|
|
modplug->state = MODPLUG_STATE_NEED_TUNE;
|
2002-06-09 19:00:27 +00:00
|
|
|
break;
|
2002-12-07 15:28:24 +00:00
|
|
|
case GST_STATE_READY_TO_NULL:
|
|
|
|
break;
|
|
|
|
default:
|
2002-06-09 19:00:27 +00:00
|
|
|
break;
|
2002-02-28 21:10:42 +00:00
|
|
|
}
|
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
if (GST_ELEMENT_CLASS (parent_class)->change_state)
|
|
|
|
return GST_ELEMENT_CLASS (parent_class)->change_state (element);
|
|
|
|
|
2002-02-28 21:10:42 +00:00
|
|
|
return GST_STATE_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2002-11-17 12:23:43 +00:00
|
|
|
|
2002-02-28 21:10:42 +00:00
|
|
|
static void
|
|
|
|
gst_modplug_set_property (GObject *object, guint id, const GValue *value, GParamSpec *pspec )
|
|
|
|
{
|
|
|
|
GstModPlug *modplug;
|
|
|
|
|
|
|
|
/* it's not null if we got it, but it might not be ours */
|
2002-12-30 17:21:45 +00:00
|
|
|
g_return_if_fail (GST_IS_MODPLUG(object));
|
|
|
|
modplug = GST_MODPLUG (object);
|
2002-02-28 21:10:42 +00:00
|
|
|
|
|
|
|
switch (id) {
|
|
|
|
case ARG_REVERB:
|
|
|
|
modplug->reverb = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case ARG_REVERB_DEPTH:
|
|
|
|
modplug->reverb_depth = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
case ARG_REVERB_DELAY:
|
|
|
|
modplug->reverb_delay = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
case ARG_MEGABASS:
|
|
|
|
modplug->megabass = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case ARG_MEGABASS_AMOUNT:
|
|
|
|
modplug->megabass_amount = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
case ARG_MEGABASS_RANGE:
|
|
|
|
modplug->megabass_range = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
case ARG_NOISE_REDUCTION:
|
|
|
|
modplug->noise_reduction = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case ARG_SURROUND:
|
|
|
|
modplug->surround = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case ARG_SURROUND_DEPTH:
|
|
|
|
modplug->surround_depth = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
case ARG_SURROUND_DELAY:
|
|
|
|
modplug->surround_delay = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_modplug_get_property (GObject *object, guint id, GValue *value, GParamSpec *pspec )
|
|
|
|
{
|
|
|
|
GstModPlug *modplug;
|
|
|
|
|
|
|
|
/* it's not null if we got it, but it might not be ours */
|
2002-12-30 17:21:45 +00:00
|
|
|
g_return_if_fail (GST_IS_MODPLUG(object));
|
|
|
|
modplug = GST_MODPLUG (object);
|
2002-02-28 21:10:42 +00:00
|
|
|
|
|
|
|
switch (id) {
|
|
|
|
case ARG_REVERB:
|
|
|
|
g_value_set_boolean (value, modplug->reverb);
|
|
|
|
break;
|
|
|
|
case ARG_REVERB_DEPTH:
|
|
|
|
g_value_set_int (value, modplug->reverb_depth);
|
|
|
|
break;
|
|
|
|
case ARG_REVERB_DELAY:
|
|
|
|
g_value_set_int (value, modplug->reverb_delay);
|
|
|
|
break;
|
|
|
|
case ARG_MEGABASS:
|
|
|
|
g_value_set_boolean (value, modplug->megabass);
|
|
|
|
break;
|
|
|
|
case ARG_MEGABASS_AMOUNT:
|
|
|
|
g_value_set_int (value, modplug->megabass_amount);
|
|
|
|
break;
|
|
|
|
case ARG_MEGABASS_RANGE:
|
|
|
|
g_value_set_int (value, modplug->megabass_range);
|
|
|
|
break;
|
|
|
|
case ARG_SURROUND:
|
|
|
|
g_value_set_boolean (value, modplug->surround);
|
|
|
|
break;
|
|
|
|
case ARG_SURROUND_DEPTH:
|
|
|
|
g_value_set_int (value, modplug->surround_depth);
|
|
|
|
break;
|
|
|
|
case ARG_SURROUND_DELAY:
|
|
|
|
g_value_set_int (value, modplug->surround_delay);
|
|
|
|
break;
|
|
|
|
case ARG_NOISE_REDUCTION:
|
|
|
|
g_value_set_boolean (value, modplug->noise_reduction);
|
|
|
|
break;
|
2002-12-30 17:21:45 +00:00
|
|
|
case ARG_METADATA:
|
|
|
|
g_value_set_boxed (value, modplug->metadata);
|
|
|
|
break;
|
|
|
|
case ARG_STREAMINFO:
|
|
|
|
g_value_set_boxed (value, modplug->streaminfo);
|
|
|
|
break;
|
2002-02-28 21:10:42 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
plugin_init (GModule *module, GstPlugin *plugin)
|
|
|
|
{
|
2002-12-30 17:21:45 +00:00
|
|
|
GstElementFactory *factory;
|
|
|
|
guint i;
|
|
|
|
|
2002-11-17 12:23:43 +00:00
|
|
|
/* this filter needs the bytestream package */
|
2003-01-19 21:20:40 +00:00
|
|
|
if (!gst_library_load ("gstbytestream"))
|
|
|
|
return FALSE;
|
2002-02-28 21:10:42 +00:00
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
factory = gst_element_factory_new ("modplug", GST_TYPE_MODPLUG, &modplug_details);
|
|
|
|
g_return_val_if_fail (factory != NULL, FALSE);
|
2002-11-17 12:23:43 +00:00
|
|
|
|
2002-05-31 08:24:31 +00:00
|
|
|
gst_element_factory_set_rank (factory, GST_ELEMENT_RANK_PRIMARY);
|
2002-02-28 21:10:42 +00:00
|
|
|
|
2002-04-11 20:42:26 +00:00
|
|
|
gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (modplug_sink_template_factory));
|
|
|
|
gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (modplug_src_template_factory));
|
2002-02-28 21:10:42 +00:00
|
|
|
|
2002-12-30 17:21:45 +00:00
|
|
|
i = 0;
|
|
|
|
while (modplug_definitions[i].name) {
|
|
|
|
GstTypeFactory *type;
|
|
|
|
|
|
|
|
type = gst_type_factory_new (&modplug_definitions[i]);
|
|
|
|
gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (type));
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
2002-02-28 21:10:42 +00:00
|
|
|
gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (factory));
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GstPluginDesc plugin_desc = {
|
|
|
|
GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"modplug",
|
|
|
|
plugin_init
|
|
|
|
};
|
2003-06-27 23:46:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|