diff --git a/gst-plugin-cdg/Cargo.toml b/gst-plugin-cdg/Cargo.toml index 7c67a733f..0af74cb30 100644 --- a/gst-plugin-cdg/Cargo.toml +++ b/gst-plugin-cdg/Cargo.toml @@ -18,6 +18,6 @@ image = "0.21" muldiv = "0.2" [lib] -name = "gstrscdg" +name = "gstcdg" crate-type = ["cdylib", "rlib"] path = "src/lib.rs" diff --git a/gst-plugin-cdg/src/lib.rs b/gst-plugin-cdg/src/lib.rs index f21101143..249700078 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!( - rscdg, + cdg, "CDG Plugin", plugin_init, "1.0", diff --git a/gst-plugin-cdg/tests/cdgdec.rs b/gst-plugin-cdg/tests/cdgdec.rs index 3059f14c1..f203a6ad1 100644 --- a/gst-plugin-cdg/tests/cdgdec.rs +++ b/gst-plugin-cdg/tests/cdgdec.rs @@ -11,7 +11,7 @@ use gstreamer as gst; use gstreamer_app as gst_app; use std::path::PathBuf; -use gstrscdg; +use gstcdg; fn init() { use std::sync::{Once, ONCE_INIT}; @@ -19,7 +19,7 @@ fn init() { INIT.call_once(|| { gst::init().unwrap(); - gstrscdg::plugin_register_static().expect("cdgdec tests"); + gstcdg::plugin_register_static().expect("cdgdec tests"); }); }