mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 00:06:36 +00:00
Updated to the new plugin loading code
Original commit message from CVS: Updated to the new plugin loading code
This commit is contained in:
parent
98b609758d
commit
f45357b246
1 changed files with 29 additions and 23 deletions
|
@ -77,6 +77,7 @@
|
|||
#include "gstfestival.h"
|
||||
#include <gst/audio/audio.h>
|
||||
|
||||
static void gst_festival_base_init (gpointer g_class);
|
||||
static void gst_festival_class_init (GstFestivalClass *klass);
|
||||
static void gst_festival_init (GstFestival *festival);
|
||||
|
||||
|
@ -89,15 +90,12 @@ static char* socket_receive_file_to_buff (int fd,int *size);
|
|||
static char* client_accept_s_expr (int fd);
|
||||
|
||||
/* elementfactory information */
|
||||
static GstElementDetails gst_festival_details = {
|
||||
static GstElementDetails gst_festival_details = GST_ELEMENT_DETAILS (
|
||||
"Festival synthesizer",
|
||||
"Filter/Audio",
|
||||
"LGPL",
|
||||
"Synthesizes plain text into audio",
|
||||
VERSION,
|
||||
"Wim Taymans <wim.taymans@chello.be>",
|
||||
"(C) 2001",
|
||||
};
|
||||
"Wim Taymans <wim.taymans@chello.be>"
|
||||
);
|
||||
|
||||
GST_PAD_TEMPLATE_FACTORY (sink_template_factory,
|
||||
"festival_sink",
|
||||
|
@ -143,7 +141,7 @@ gst_festival_get_type (void)
|
|||
if (!festival_type) {
|
||||
static const GTypeInfo festival_info = {
|
||||
sizeof(GstFestivalClass),
|
||||
NULL,
|
||||
gst_festival_base_init,
|
||||
NULL,
|
||||
(GClassInitFunc) gst_festival_class_init,
|
||||
NULL,
|
||||
|
@ -157,6 +155,18 @@ gst_festival_get_type (void)
|
|||
return festival_type;
|
||||
}
|
||||
|
||||
static void
|
||||
gst_festival_base_init (gpointer g_class)
|
||||
{
|
||||
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
||||
|
||||
/* register src pads */
|
||||
gst_element_class_add_pad_template (element_class, GST_PAD_TEMPLATE_GET (sink_template_factory));
|
||||
gst_element_class_add_pad_template (element_class, GST_PAD_TEMPLATE_GET (src_template_factory));
|
||||
|
||||
gst_element_class_set_details (element_class, &gst_festival_details);
|
||||
}
|
||||
|
||||
static void
|
||||
gst_festival_class_init (GstFestivalClass *klass)
|
||||
{
|
||||
|
@ -434,27 +444,23 @@ gst_festival_change_state (GstElement *element)
|
|||
}
|
||||
|
||||
static gboolean
|
||||
plugin_init (GModule *module, GstPlugin *plugin)
|
||||
plugin_init (GstPlugin *plugin)
|
||||
{
|
||||
GstElementFactory *factory;
|
||||
|
||||
/* create an elementfactory for the festival element */
|
||||
factory = gst_element_factory_new ("festival", GST_TYPE_FESTIVAL,
|
||||
&gst_festival_details);
|
||||
g_return_val_if_fail(factory != NULL, FALSE);
|
||||
|
||||
/* register src pads */
|
||||
gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (sink_template_factory));
|
||||
gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (src_template_factory));
|
||||
|
||||
gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (factory));
|
||||
if (!gst_element_register (plugin, "festival", GST_RANK_NONE, GST_TYPE_FESTIVAL))
|
||||
return FALSE;
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
GstPluginDesc plugin_desc = {
|
||||
GST_PLUGIN_DEFINE (
|
||||
GST_VERSION_MAJOR,
|
||||
GST_VERSION_MINOR,
|
||||
"festival",
|
||||
plugin_init
|
||||
};
|
||||
"Synthesizes plain text into audio",
|
||||
plugin_init,
|
||||
VERSION,
|
||||
"LGPL",
|
||||
GST_COPYRIGHT,
|
||||
GST_PACKAGE,
|
||||
GST_ORIGIN
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue