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

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/video
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
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')
-rw-r--r--video/cdg/Cargo.toml2
-rw-r--r--video/closedcaption/Cargo.toml2
-rw-r--r--video/dav1d/Cargo.toml4
-rw-r--r--video/dav1d/src/lib.rs4
-rw-r--r--video/ffv1/Cargo.toml2
-rw-r--r--video/flavors/Cargo.toml2
-rw-r--r--video/gtk4/Cargo.toml2
-rw-r--r--video/hsv/Cargo.toml2
-rw-r--r--video/png/Cargo.toml (renamed from video/rspng/Cargo.toml)4
l---------video/png/LICENSE-APACHE (renamed from video/rspng/LICENSE-APACHE)0
l---------video/png/LICENSE-MIT (renamed from video/rspng/LICENSE-MIT)0
-rw-r--r--video/png/build.rs (renamed from video/rspng/build.rs)0
-rw-r--r--video/png/examples/pngenc.rs (renamed from video/rspng/examples/pngenc.rs)0
-rw-r--r--video/png/src/lib.rs (renamed from video/rspng/src/lib.rs)0
-rw-r--r--video/png/src/pngenc/imp.rs (renamed from video/rspng/src/pngenc/imp.rs)0
-rw-r--r--video/png/src/pngenc/mod.rs (renamed from video/rspng/src/pngenc/mod.rs)0
-rw-r--r--video/png/tests/pngenc.rs (renamed from video/rspng/tests/pngenc.rs)0
-rw-r--r--video/rav1e/Cargo.toml2
-rw-r--r--video/videofx/Cargo.toml4
-rw-r--r--video/videofx/src/lib.rs4
-rw-r--r--video/webp/Cargo.toml2
21 files changed, 18 insertions, 18 deletions
diff --git a/video/cdg/Cargo.toml b/video/cdg/Cargo.toml
index 91529faa..2c3fe751 100644
--- a/video/cdg/Cargo.toml
+++ b/video/cdg/Cargo.toml
@@ -4,7 +4,7 @@ version = "0.9.0-alpha.1"
authors = ["Guillaume Desmottes <guillaume.desmottes@collabora.com>"]
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MIT OR Apache-2.0"
-description = "CDG Plugin"
+description = "GStreamer CDG codec Plugin"
edition = "2021"
rust-version = "1.63"
diff --git a/video/closedcaption/Cargo.toml b/video/closedcaption/Cargo.toml
index af30036e..4de680f7 100644
--- a/video/closedcaption/Cargo.toml
+++ b/video/closedcaption/Cargo.toml
@@ -5,7 +5,7 @@ authors = ["Sebastian Dröge <sebastian@centricular.com>", "Jordan Petridis <jor
license = "MPL-2.0"
edition = "2021"
rust-version = "1.63"
-description = "Rust Closed Caption Plugin"
+description = "GStreamer Rust Closed Caption Plugin"
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
[dependencies]
diff --git a/video/dav1d/Cargo.toml b/video/dav1d/Cargo.toml
index 0c80049f..3263ec85 100644
--- a/video/dav1d/Cargo.toml
+++ b/video/dav1d/Cargo.toml
@@ -6,7 +6,7 @@ edition = "2021"
rust-version = "1.63"
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MIT OR Apache-2.0"
-description = "Dav1d Plugin"
+description = "GStreamer dav1d AV1 decoder Plugin"
[dependencies]
dav1d = "0.9"
@@ -17,7 +17,7 @@ num_cpus = "1.0"
once_cell = "1.0"
[lib]
-name = "gstrsdav1d"
+name = "gstdav1d"
crate-type = ["cdylib", "rlib"]
path = "src/lib.rs"
diff --git a/video/dav1d/src/lib.rs b/video/dav1d/src/lib.rs
index efb51140..f2cd8df1 100644
--- a/video/dav1d/src/lib.rs
+++ b/video/dav1d/src/lib.rs
@@ -10,7 +10,7 @@
#![allow(clippy::non_send_fields_in_send_ty, unused_doc_comments)]
/**
- * plugin-rsdav1d:
+ * plugin-dav1d:
*
* Since: plugins-rs-0.6.0
*/
@@ -24,7 +24,7 @@ fn plugin_init(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
}
gst::plugin_define!(
- rsdav1d,
+ dav1d,
env!("CARGO_PKG_DESCRIPTION"),
plugin_init,
concat!(env!("CARGO_PKG_VERSION"), "-", env!("COMMIT_ID")),
diff --git a/video/ffv1/Cargo.toml b/video/ffv1/Cargo.toml
index 2151277d..9b538f93 100644
--- a/video/ffv1/Cargo.toml
+++ b/video/ffv1/Cargo.toml
@@ -4,7 +4,7 @@ version = "0.9.0-alpha.1"
authors = ["Arun Raghavan <arun@asymptotic.io>"]
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MIT OR Apache-2.0"
-description = "FFV1 Decoder Plugin"
+description = "GStreamer FFV1 Decoder Plugin"
edition = "2021"
rust-version = "1.63"
diff --git a/video/flavors/Cargo.toml b/video/flavors/Cargo.toml
index ed038f21..7f8eceeb 100644
--- a/video/flavors/Cargo.toml
+++ b/video/flavors/Cargo.toml
@@ -6,7 +6,7 @@ repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.63"
-description = "Rust FLV Plugin"
+description = "GStreamer Rust FLV Plugin"
[dependencies]
gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
diff --git a/video/gtk4/Cargo.toml b/video/gtk4/Cargo.toml
index c1f9bf13..9a33f481 100644
--- a/video/gtk4/Cargo.toml
+++ b/video/gtk4/Cargo.toml
@@ -6,7 +6,7 @@ repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MPL-2.0"
edition = "2021"
rust-version = "1.63"
-description = "GTK 4 Sink element and Paintable widget"
+description = "GStreamer GTK 4 Sink element and Paintable widget"
[dependencies]
gtk = { package = "gtk4", git = "https://github.com/gtk-rs/gtk4-rs" }
diff --git a/video/hsv/Cargo.toml b/video/hsv/Cargo.toml
index 375f2ec2..bc40d238 100644
--- a/video/hsv/Cargo.toml
+++ b/video/hsv/Cargo.toml
@@ -6,7 +6,7 @@ repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.63"
-description = "HSV manipulation elements, written in Rust"
+description = "GStreamer plugin with HSV manipulation elements"
[dependencies]
gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
diff --git a/video/rspng/Cargo.toml b/video/png/Cargo.toml
index f096e7da..2b0460c5 100644
--- a/video/rspng/Cargo.toml
+++ b/video/png/Cargo.toml
@@ -1,12 +1,12 @@
[package]
-name = "gst-plugin-rspng"
+name = "gst-plugin-png"
version = "0.9.0-alpha.1"
authors = ["Natanael Mojica <neithanmo@gmail.com>"]
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.63"
-description = "An PNG encoder/decoder written in pure Rust"
+description = "GStreamer Rust PNG encoder/decoder"
[dependencies]
gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
diff --git a/video/rspng/LICENSE-APACHE b/video/png/LICENSE-APACHE
index 1cd601d0..1cd601d0 120000
--- a/video/rspng/LICENSE-APACHE
+++ b/video/png/LICENSE-APACHE
diff --git a/video/rspng/LICENSE-MIT b/video/png/LICENSE-MIT
index b2cfbdc7..b2cfbdc7 120000
--- a/video/rspng/LICENSE-MIT
+++ b/video/png/LICENSE-MIT
diff --git a/video/rspng/build.rs b/video/png/build.rs
index cda12e57..cda12e57 100644
--- a/video/rspng/build.rs
+++ b/video/png/build.rs
diff --git a/video/rspng/examples/pngenc.rs b/video/png/examples/pngenc.rs
index 0ed81975..0ed81975 100644
--- a/video/rspng/examples/pngenc.rs
+++ b/video/png/examples/pngenc.rs
diff --git a/video/rspng/src/lib.rs b/video/png/src/lib.rs
index 030efc91..030efc91 100644
--- a/video/rspng/src/lib.rs
+++ b/video/png/src/lib.rs
diff --git a/video/rspng/src/pngenc/imp.rs b/video/png/src/pngenc/imp.rs
index 851677d8..851677d8 100644
--- a/video/rspng/src/pngenc/imp.rs
+++ b/video/png/src/pngenc/imp.rs
diff --git a/video/rspng/src/pngenc/mod.rs b/video/png/src/pngenc/mod.rs
index b58ea081..b58ea081 100644
--- a/video/rspng/src/pngenc/mod.rs
+++ b/video/png/src/pngenc/mod.rs
diff --git a/video/rspng/tests/pngenc.rs b/video/png/tests/pngenc.rs
index dabdb979..dabdb979 100644
--- a/video/rspng/tests/pngenc.rs
+++ b/video/png/tests/pngenc.rs
diff --git a/video/rav1e/Cargo.toml b/video/rav1e/Cargo.toml
index 836ff80e..7b6adf0e 100644
--- a/video/rav1e/Cargo.toml
+++ b/video/rav1e/Cargo.toml
@@ -4,7 +4,7 @@ version = "0.9.0-alpha.1"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MIT OR Apache-2.0"
-description = "rav1e AV1 Encoder Plugin"
+description = "GStreamer rav1e AV1 Encoder Plugin"
edition = "2021"
rust-version = "1.63"
diff --git a/video/videofx/Cargo.toml b/video/videofx/Cargo.toml
index 4ddba489..bfa2585f 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 232c0b4f..ce811038 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")),
diff --git a/video/webp/Cargo.toml b/video/webp/Cargo.toml
index 8ea1a263..11ec8667 100644
--- a/video/webp/Cargo.toml
+++ b/video/webp/Cargo.toml
@@ -5,7 +5,7 @@ authors = ["Mathieu Duponchelle <mathieu@centricular.com>"]
license = "MPL-2.0"
edition = "2021"
rust-version = "1.63"
-description = "WebP Plugin"
+description = "GStreamer WebP Plugin"
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
[dependencies]