diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2008-02-07 21:57:54 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2008-02-07 21:57:54 +0000 |
commit | 6fe3c141d711f0796a893369b3d715b7ef11c00b (patch) | |
tree | ee4df2692acc61cde72a07e1fde68969e521d620 /gst/audiofx/audiofx.c | |
parent | 6d166987a0cce4e56faa888c4bbb7929e7866faf (diff) |
Move the lpwsinc and bpwsinc elements from gst-plugins-bad into the audiofx plugin, and rename to audiowsinclimit and...
Original commit message from CVS:
* docs/plugins/Makefile.am:
* docs/plugins/gst-plugins-good-plugins-docs.sgml:
* docs/plugins/gst-plugins-good-plugins-sections.txt:
* docs/plugins/gst-plugins-good-plugins.args:
* docs/plugins/inspect/plugin-audiofx.xml:
* gst/audiofx/Makefile.am:
* gst/audiofx/audiofx.c:
* gst/audiofx/audiowsincband.c:
* gst/audiofx/audiowsincband.h:
* gst/audiofx/audiowsinclimit.c:
* gst/audiofx/audiowsinclimit.h:
* tests/check/Makefile.am:
* tests/check/elements/audiowsincband.c:
* tests/check/elements/audiowsinclimit.c:
Move the lpwsinc and bpwsinc elements from gst-plugins-bad into
the audiofx plugin, and rename to audiowsinclimit and audiowsincband
respectively.
Fixes: #467666
Diffstat (limited to 'gst/audiofx/audiofx.c')
-rw-r--r-- | gst/audiofx/audiofx.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gst/audiofx/audiofx.c b/gst/audiofx/audiofx.c index e5087a4c..d23b64d1 100644 --- a/gst/audiofx/audiofx.c +++ b/gst/audiofx/audiofx.c @@ -31,6 +31,8 @@ #include "audiodynamic.h" #include "audiocheblimit.h" #include "audiochebband.h" +#include "audiowsincband.h" +#include "audiowsinclimit.h" /* entry point to initialize the plug-in * initialize the plug-in itself @@ -54,7 +56,11 @@ plugin_init (GstPlugin * plugin) gst_element_register (plugin, "audiocheblimit", GST_RANK_NONE, GST_TYPE_AUDIO_CHEB_LIMIT) && gst_element_register (plugin, "audiochebband", GST_RANK_NONE, - GST_TYPE_AUDIO_CHEB_BAND)); + GST_TYPE_AUDIO_CHEB_BAND) && + gst_element_register (plugin, "audiowsinclimit", GST_RANK_NONE, + GST_TYPE_AUDIO_WSINC_LIMIT) && + gst_element_register (plugin, "audiowsincband", GST_RANK_NONE, + GST_TYPE_AUDIO_WSINC_BAND)); } GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, |