summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2019-05-17 08:34:17 +0100
committerTim-Philipp Müller <tim@centricular.com>2019-05-17 08:34:17 +0100
commit16d996b0efc3643323698e986f33a1753cb00f15 (patch)
tree70e664945011349a4cc7965364fa71491d66e2d2
parenteec1ed44241ed680b5f92246e8550ddb57f339b7 (diff)
audiofilter: fix plugin name to match plugin .so filename
Otherwise the entry point won't be found and the plugin won't be loaded.
-rw-r--r--gst-plugin/src/gstaudiofilter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst-plugin/src/gstaudiofilter.c b/gst-plugin/src/gstaudiofilter.c
index 4102a44..f84b68b 100644
--- a/gst-plugin/src/gstaudiofilter.c
+++ b/gst-plugin/src/gstaudiofilter.c
@@ -333,8 +333,8 @@ plugin_init (GstPlugin * plugin)
GST_PLUGIN_DEFINE (
GST_VERSION_MAJOR,
GST_VERSION_MINOR,
- audiofiltertemplateplugin,
- "Audio filter template plugin",
+ audiofilterexample,
+ "Audio filter example plugin",
plugin_init,
VERSION, "LGPL",
"GStreamer",