From a710cd0751ae588a0a3d95d27db912ccbfa2efd2 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Tue, 28 May 2019 15:43:49 +0530 Subject: [PATCH] cdg: fix plugin name The plugin name needs to match the lib name so plugin entry points are properly named. Fix regression introduced when switching to the new plugin symbols. --- gst-plugin-cdg/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-plugin-cdg/src/lib.rs b/gst-plugin-cdg/src/lib.rs index 24970007..f2110114 100644 --- a/gst-plugin-cdg/src/lib.rs +++ b/gst-plugin-cdg/src/lib.rs @@ -20,7 +20,7 @@ fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> { } gst_plugin_define!( - cdg, + rscdg, "CDG Plugin", plugin_init, "1.0",