Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2022-10-23 12:13:23 +0300
committerSebastian Dröge <sebastian@centricular.com>2022-10-23 20:25:08 +0300
commit20ad9175d8e58f2285e709b576efdc822b009577 (patch)
tree93b9efad97196b6411efd36a05ce6b3e8411222d /video/videofx
parent45168639e9d7e850350202db5064d8be05daf576 (diff)
Make GStreamer plugin/crate/library/directory names and descriptions consistent
Fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/238
Diffstat (limited to 'video/videofx')
-rw-r--r--video/videofx/Cargo.toml4
-rw-r--r--video/videofx/src/lib.rs4
2 files changed, 4 insertions, 4 deletions
diff --git a/video/videofx/Cargo.toml b/video/videofx/Cargo.toml
index 4ddba4894..bfa2585f7 100644
--- a/video/videofx/Cargo.toml
+++ b/video/videofx/Cargo.toml
@@ -4,7 +4,7 @@ version = "0.9.0-alpha.1"
authors = ["Sanchayan Maity <sanchayan@asymptotic.io>", "Rafael Caricio <rafael@caricio.com>"]
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MPL-2.0"
-description = "Video Effects Plugin"
+description = "GStreamer Rust Video Effects Plugin"
edition = "2021"
rust-version = "1.63"
@@ -39,7 +39,7 @@ git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs"
package = "gstreamer-check"
[lib]
-name = "gstvideofx"
+name = "gstrsvideofx"
crate-type = ["cdylib", "rlib"]
path = "src/lib.rs"
diff --git a/video/videofx/src/lib.rs b/video/videofx/src/lib.rs
index 232c0b4f8..ce811038e 100644
--- a/video/videofx/src/lib.rs
+++ b/video/videofx/src/lib.rs
@@ -9,7 +9,7 @@
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
/**
- * plugin-videofx:
+ * plugin-rsvideofx:
*
* Since: plugins-rs-0.8.0
*/
@@ -32,7 +32,7 @@ fn plugin_init(plugin: &gst::Plugin) -> Result<(), gst::glib::BoolError> {
}
gst::plugin_define!(
- videofx,
+ rsvideofx,
env!("CARGO_PKG_DESCRIPTION"),
plugin_init,
concat!(env!("CARGO_PKG_VERSION"), "-", env!("COMMIT_ID")),