diff options
author | Stefan Kost <ensonic@users.sourceforge.net> | 2006-08-20 13:06:44 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2006-08-20 13:06:44 +0000 |
commit | 83bedf3e0712370a55718335ddf6c1ff8f784200 (patch) | |
tree | cb5e30b0e3d5d2d4961a2d18e8b9a752a6cc8f36 /ext | |
parent | 32df8f43da3e5648e6d2cc093bb2e8099714977c (diff) |
docs/plugins/: cleanup -unused.txt to make it useful, add previously missing docs
Original commit message from CVS:
* docs/plugins/gst-plugins-good-plugins-docs.sgml:
* docs/plugins/gst-plugins-good-plugins-sections.txt:
* docs/plugins/inspect/plugin-audiofxgood.xml:
cleanup -unused.txt to make it useful, add previously missing docs
* ext/Makefile.am:
* ext/esd/esdmon.c:
* ext/esd/esdsink.c:
* ext/esd/gstesd.c: (plugin_init):
reflow to get rid of two external symbols
* gst/audiofxgood/audiofx.c: (plugin_init):
re-add
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Makefile.am | 8 | ||||
-rw-r--r-- | ext/esd/esdmon.c | 9 | ||||
-rw-r--r-- | ext/esd/esdsink.c | 10 | ||||
-rw-r--r-- | ext/esd/gstesd.c | 6 |
4 files changed, 7 insertions, 26 deletions
diff --git a/ext/Makefile.am b/ext/Makefile.am index ec470ba27..2626f65c0 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -58,11 +58,11 @@ else JPEG_DIR = endif -# if USE_LADSPA -# LADSPA_DIR = ladspa -# else +if USE_LADSPA +LADSPA_DIR = ladspa +else LADSPA_DIR = -# endif +endif if USE_LIBCACA LIBCACA_DIR = libcaca diff --git a/ext/esd/esdmon.c b/ext/esd/esdmon.c index 6a97e23c8..2e10f2b16 100644 --- a/ext/esd/esdmon.c +++ b/ext/esd/esdmon.c @@ -359,15 +359,6 @@ gst_esdmon_get_property (GObject * object, guint prop_id, GValue * value, } } -gboolean -gst_esdmon_factory_init (GstPlugin * plugin) -{ - if (!gst_element_register (plugin, "esdmon", GST_RANK_NONE, GST_TYPE_ESDMON)) - return FALSE; - - return TRUE; -} - static gboolean gst_esdmon_open_audio (GstEsdmon * src) { diff --git a/ext/esd/esdsink.c b/ext/esd/esdsink.c index 6ab2612bb..3a868d44b 100644 --- a/ext/esd/esdsink.c +++ b/ext/esd/esdsink.c @@ -470,13 +470,3 @@ gst_esdsink_get_property (GObject * object, guint prop_id, GValue * value, break; } } - -gboolean -gst_esdsink_factory_init (GstPlugin * plugin) -{ - if (!gst_element_register (plugin, "esdsink", GST_RANK_MARGINAL, - GST_TYPE_ESDSINK)) - return FALSE; - - return TRUE; -} diff --git a/ext/esd/gstesd.c b/ext/esd/gstesd.c index 62554d0a8..71fc30bbf 100644 --- a/ext/esd/gstesd.c +++ b/ext/esd/gstesd.c @@ -33,12 +33,12 @@ GST_DEBUG_CATEGORY (esd_debug); static gboolean plugin_init (GstPlugin * plugin) { - if (!gst_esdsink_factory_init (plugin)) + if (!gst_element_register (plugin, "esdsink", GST_RANK_MARGINAL, + GST_TYPE_ESDSINK)) return FALSE; #if 0 - ret = gst_esdmon_factory_init (plugin); - if (ret == FALSE) + if (!gst_element_register (plugin, "esdmon", GST_RANK_NONE, GST_TYPE_ESDMON)) return FALSE; #endif |