summaryrefslogtreecommitdiffstats
path: root/gst/audiofx/audiofx.c
diff options
context:
space:
mode:
authorJan Schmidt <thaytan@mad.scientist.com>2008-02-06 23:44:43 +0000
committerJan Schmidt <thaytan@mad.scientist.com>2008-02-06 23:44:43 +0000
commit22bea9fec39c98e58a3eec4e02b6df0b74936a0b (patch)
tree1e53048c543615729085db261f8670f41af49fef /gst/audiofx/audiofx.c
parent8921eb2cd92059191b2b16aafbdfae04276935b4 (diff)
Rename audiochebyshevfreqband -> audiochebband and audiochebyshevfreqlimit -> audiocheblimit and do the requisite CVS...
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/audiochebband.c: * gst/audiofx/audiochebband.h: * gst/audiofx/audiocheblimit.c: * gst/audiofx/audiocheblimit.h: * gst/audiofx/audiochebyshevfreqband.c: * gst/audiofx/audiochebyshevfreqband.h: * gst/audiofx/audiochebyshevfreqlimit.c: * gst/audiofx/audiochebyshevfreqlimit.h: * gst/audiofx/audiofx.c: * tests/check/Makefile.am: * tests/check/elements/.cvsignore: * tests/check/elements/audiochebband.c: * tests/check/elements/audiocheblimit.c: * tests/check/elements/audiochebyshevfreqband.c: * tests/check/elements/audiochebyshevfreqlimit.c: Rename audiochebyshevfreqband -> audiochebband and audiochebyshevfreqlimit -> audiocheblimit and do the requisite CVS surgery. Closes: #491811
Diffstat (limited to 'gst/audiofx/audiofx.c')
-rw-r--r--gst/audiofx/audiofx.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gst/audiofx/audiofx.c b/gst/audiofx/audiofx.c
index 2c198f32..e5087a4c 100644
--- a/gst/audiofx/audiofx.c
+++ b/gst/audiofx/audiofx.c
@@ -29,8 +29,8 @@
#include "audioinvert.h"
#include "audioamplify.h"
#include "audiodynamic.h"
-#include "audiochebyshevfreqlimit.h"
-#include "audiochebyshevfreqband.h"
+#include "audiocheblimit.h"
+#include "audiochebband.h"
/* entry point to initialize the plug-in
* initialize the plug-in itself
@@ -51,10 +51,10 @@ plugin_init (GstPlugin * plugin)
GST_TYPE_AUDIO_AMPLIFY) &&
gst_element_register (plugin, "audiodynamic", GST_RANK_NONE,
GST_TYPE_AUDIO_DYNAMIC) &&
- gst_element_register (plugin, "audiochebyshevfreqlimit", GST_RANK_NONE,
- GST_TYPE_AUDIO_CHEBYSHEV_FREQ_LIMIT) &&
- gst_element_register (plugin, "audiochebyshevfreqband", GST_RANK_NONE,
- GST_TYPE_AUDIO_CHEBYSHEV_FREQ_BAND));
+ 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_PLUGIN_DEFINE (GST_VERSION_MAJOR,