2000-12-29 05:38:06 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
*
|
2001-03-07 21:52:56 +00:00
|
|
|
* gstelements.c:
|
2000-01-30 09:03:00 +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
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
#include <gst/gst.h>
|
|
|
|
|
2003-10-28 20:25:30 +00:00
|
|
|
#include "gstaggregator.h"
|
2001-01-18 23:46:15 +00:00
|
|
|
#include "gstfakesink.h"
|
|
|
|
#include "gstfakesrc.h"
|
|
|
|
#include "gstfdsink.h"
|
|
|
|
#include "gstfdsrc.h"
|
2003-10-28 20:25:30 +00:00
|
|
|
#include "gstfilesink.h"
|
|
|
|
#include "gstfilesrc.h"
|
|
|
|
#include "gstidentity.h"
|
|
|
|
#include "gstmd5sink.h"
|
2004-02-11 18:49:26 +00:00
|
|
|
#include "gstmultifilesrc.h"
|
2001-01-18 23:46:15 +00:00
|
|
|
#include "gstpipefilter.h"
|
2003-02-23 20:29:12 +00:00
|
|
|
#include "gstshaper.h"
|
2001-10-24 22:42:40 +00:00
|
|
|
#include "gststatistics.h"
|
2003-10-28 20:25:30 +00:00
|
|
|
#include "gsttee.h"
|
2004-01-20 15:05:42 +00:00
|
|
|
#include "gsttypefind.h"
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
struct _elements_entry
|
|
|
|
{
|
2000-01-30 09:03:00 +00:00
|
|
|
gchar *name;
|
2003-10-31 19:32:47 +00:00
|
|
|
guint rank;
|
2004-03-13 15:27:01 +00:00
|
|
|
GType (*type) (void);
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
2001-08-22 04:30:27 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
extern GType gst_filesrc_get_type (void);
|
2001-10-21 21:58:29 +00:00
|
|
|
extern GstElementDetails gst_filesrc_details;
|
2001-08-22 04:30:27 +00:00
|
|
|
|
2000-11-25 14:18:47 +00:00
|
|
|
static struct _elements_entry _elements[] = {
|
2004-03-13 15:27:01 +00:00
|
|
|
{"aggregator", GST_RANK_NONE, gst_aggregator_get_type},
|
|
|
|
{"fakesrc", GST_RANK_NONE, gst_fakesrc_get_type},
|
|
|
|
{"fakesink", GST_RANK_NONE, gst_fakesink_get_type},
|
|
|
|
{"fdsink", GST_RANK_NONE, gst_fdsink_get_type},
|
|
|
|
{"fdsrc", GST_RANK_NONE, gst_fdsrc_get_type},
|
|
|
|
{"filesrc", GST_RANK_NONE, gst_filesrc_get_type},
|
|
|
|
{"filesink", GST_RANK_NONE, gst_filesink_get_type},
|
|
|
|
{"identity", GST_RANK_NONE, gst_identity_get_type},
|
|
|
|
{"md5sink", GST_RANK_NONE, gst_md5sink_get_type},
|
2004-04-14 01:38:27 +00:00
|
|
|
#ifndef HAVE_WIN32
|
2004-03-13 15:27:01 +00:00
|
|
|
{"multifilesrc", GST_RANK_NONE, gst_multifilesrc_get_type},
|
|
|
|
{"pipefilter", GST_RANK_NONE, gst_pipefilter_get_type},
|
2004-04-20 22:22:01 +00:00
|
|
|
#endif
|
2004-03-13 15:27:01 +00:00
|
|
|
{"shaper", GST_RANK_NONE, gst_shaper_get_type},
|
|
|
|
{"statistics", GST_RANK_NONE, gst_statistics_get_type},
|
|
|
|
{"tee", GST_RANK_NONE, gst_tee_get_type},
|
|
|
|
{"typefind", GST_RANK_NONE, gst_type_find_element_get_type},
|
|
|
|
{NULL, 0},
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
2001-04-22 12:30:14 +00:00
|
|
|
static gboolean
|
2004-03-13 15:27:01 +00:00
|
|
|
plugin_init (GstPlugin * plugin)
|
2000-11-25 14:18:47 +00:00
|
|
|
{
|
2003-10-31 19:32:47 +00:00
|
|
|
struct _elements_entry *my_elements = _elements;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
|
|
|
while ((*my_elements).name) {
|
|
|
|
if (!gst_element_register (plugin, (*my_elements).name, (*my_elements).rank,
|
2004-03-15 19:27:17 +00:00
|
|
|
((*my_elements).type) ()))
|
2003-10-31 19:32:47 +00:00
|
|
|
return FALSE;
|
|
|
|
my_elements++;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2001-04-22 12:30:14 +00:00
|
|
|
return TRUE;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
2001-04-22 12:30:14 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"gstelements",
|
|
|
|
"standard GStreamer elements",
|
|
|
|
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE, GST_ORIGIN)
|