diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2019-05-17 08:34:17 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2019-05-17 08:34:17 +0100 |
commit | 16d996b0efc3643323698e986f33a1753cb00f15 (patch) | |
tree | 70e664945011349a4cc7965364fa71491d66e2d2 /gst-plugin | |
parent | eec1ed44241ed680b5f92246e8550ddb57f339b7 (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.
Diffstat (limited to 'gst-plugin')
-rw-r--r-- | gst-plugin/src/gstaudiofilter.c | 4 |
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", |