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-04-07 12:41:54 +0300
committerSebastian Dröge <sebastian@centricular.com>2022-04-07 12:41:54 +0300
commit803e452889e7de90bac1d42ca0e0eac6b5e99c53 (patch)
treeae4ecf750bea81c57d425ecf344fd8b079d3d5e3 /video
parent0a3e9c81f9c9eeb3e0ffa9828a423519d2bfea0c (diff)
Update minimum supported GStreamer version to 1.14
Diffstat (limited to 'video')
-rw-r--r--video/cdg/Cargo.toml9
-rw-r--r--video/dav1d/Cargo.toml5
-rw-r--r--video/ffv1/Cargo.toml3
-rw-r--r--video/flavors/Cargo.toml3
-rw-r--r--video/gif/Cargo.toml3
-rw-r--r--video/gtk4/Cargo.toml3
-rw-r--r--video/hsv/Cargo.toml3
-rw-r--r--video/rav1e/Cargo.toml5
-rw-r--r--video/rspng/Cargo.toml3
-rw-r--r--video/videofx/Cargo.toml1
-rw-r--r--video/webp/Cargo.toml3
11 files changed, 15 insertions, 26 deletions
diff --git a/video/cdg/Cargo.toml b/video/cdg/Cargo.toml
index eb4c0f54..042a217d 100644
--- a/video/cdg/Cargo.toml
+++ b/video/cdg/Cargo.toml
@@ -9,9 +9,9 @@ edition = "2021"
rust-version = "1.57"
[dependencies]
-gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_12"] }
-gst-base = { package = "gstreamer-base", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_12"] }
-gst-video = { package = "gstreamer-video", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_12"] }
+gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
+gst-base = { package = "gstreamer-base", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
+gst-video = { package = "gstreamer-video", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
cdg = "0.1"
cdg_renderer = "0.7"
image = { version = "0.24", default-features = false }
@@ -30,8 +30,7 @@ path = "src/lib.rs"
gst-plugin-version-helper = { path="../../version-helper" }
[features]
-# GStreamer 1.14 is required for static linking
-static = ["gst/v1_14"]
+static = []
capi = []
[package.metadata.capi]
diff --git a/video/dav1d/Cargo.toml b/video/dav1d/Cargo.toml
index 2b6c84b4..65c30842 100644
--- a/video/dav1d/Cargo.toml
+++ b/video/dav1d/Cargo.toml
@@ -13,7 +13,7 @@ atomic_refcell = "0.1"
dav1d = "0.7"
gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
gst-base = { package = "gstreamer-base", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
-gst-video = { package = "gstreamer-video", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_12"] }
+gst-video = { package = "gstreamer-video", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
once_cell = "1.0"
[lib]
@@ -25,8 +25,7 @@ path = "src/lib.rs"
gst-plugin-version-helper = { path = "../../version-helper" }
[features]
-# GStreamer 1.14 is required for static linking
-static = ["gst/v1_14"]
+static = []
capi = []
[package.metadata.capi]
diff --git a/video/ffv1/Cargo.toml b/video/ffv1/Cargo.toml
index 29948e30..da4daff1 100644
--- a/video/ffv1/Cargo.toml
+++ b/video/ffv1/Cargo.toml
@@ -26,8 +26,7 @@ path = "src/lib.rs"
gst-plugin-version-helper = { path="../../version-helper" }
[features]
-# GStreamer 1.14 is required for static linking
-static = ["gst/v1_14"]
+static = []
capi = []
[package.metadata.capi]
diff --git a/video/flavors/Cargo.toml b/video/flavors/Cargo.toml
index aa62f8e9..df8decec 100644
--- a/video/flavors/Cargo.toml
+++ b/video/flavors/Cargo.toml
@@ -28,8 +28,7 @@ path = "src/lib.rs"
gst-plugin-version-helper = { path="../../version-helper" }
[features]
-# GStreamer 1.14 is required for static linking
-static = ["gst/v1_14"]
+static = []
capi = []
[package.metadata.capi]
diff --git a/video/gif/Cargo.toml b/video/gif/Cargo.toml
index 616b3dbe..109ea231 100644
--- a/video/gif/Cargo.toml
+++ b/video/gif/Cargo.toml
@@ -31,8 +31,7 @@ path = "examples/testvideosrc2gif.rs"
gst-plugin-version-helper = { path="../../version-helper" }
[features]
-# GStreamer 1.14 is required for static linking
-static = ["gst/v1_14"]
+static = []
capi = []
[package.metadata.capi]
diff --git a/video/gtk4/Cargo.toml b/video/gtk4/Cargo.toml
index 4e592740..639a5ca9 100644
--- a/video/gtk4/Cargo.toml
+++ b/video/gtk4/Cargo.toml
@@ -27,8 +27,7 @@ path = "src/lib.rs"
gst-plugin-version-helper = { path="../../version-helper" }
[features]
-# GStreamer 1.14 is required for static linking
-static = ["gst/v1_14"]
+static = []
capi = []
[package.metadata.capi]
diff --git a/video/hsv/Cargo.toml b/video/hsv/Cargo.toml
index 9e4cd69f..59cd343b 100644
--- a/video/hsv/Cargo.toml
+++ b/video/hsv/Cargo.toml
@@ -29,8 +29,7 @@ path = "src/lib.rs"
gst-plugin-version-helper = { path="../../version-helper" }
[features]
-# GStreamer 1.14 is required for static linking
-static = ["gst/v1_14"]
+static = []
capi = []
[package.metadata.capi]
diff --git a/video/rav1e/Cargo.toml b/video/rav1e/Cargo.toml
index 5414777d..a152b897 100644
--- a/video/rav1e/Cargo.toml
+++ b/video/rav1e/Cargo.toml
@@ -10,7 +10,7 @@ rust-version = "1.57"
[dependencies]
gst = { package = "gstreamer", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
-gst-video = { package = "gstreamer-video", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_12"] }
+gst-video = { package = "gstreamer-video", git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
rav1e = { version = "0.5", default-features = false }
once_cell = "1.0"
atomic_refcell = "0.1"
@@ -28,8 +28,7 @@ gst-plugin-version-helper = { path="../../version-helper" }
[features]
default = ["hdr"]
-# GStreamer 1.14 is required for static linking
-static = ["gst/v1_14"]
+static = []
capi = []
asm = ["rav1e/asm"]
hdr = ["gst-video/v1_18"]
diff --git a/video/rspng/Cargo.toml b/video/rspng/Cargo.toml
index fb985a96..1e630390 100644
--- a/video/rspng/Cargo.toml
+++ b/video/rspng/Cargo.toml
@@ -28,8 +28,7 @@ path = "src/lib.rs"
gst-plugin-version-helper = { path="../../version-helper" }
[features]
-# GStreamer 1.14 is required for static linking
-static = ["gst/v1_14"]
+static = []
capi = []
[package.metadata.capi]
diff --git a/video/videofx/Cargo.toml b/video/videofx/Cargo.toml
index 321aea94..95b67135 100644
--- a/video/videofx/Cargo.toml
+++ b/video/videofx/Cargo.toml
@@ -40,7 +40,6 @@ path = "src/lib.rs"
gst-plugin-version-helper = { path="../../version-helper" }
[features]
-# GStreamer 1.14 is required for static linking
static = []
capi = []
diff --git a/video/webp/Cargo.toml b/video/webp/Cargo.toml
index d8f0d352..c8ac9d3d 100644
--- a/video/webp/Cargo.toml
+++ b/video/webp/Cargo.toml
@@ -36,8 +36,7 @@ path = "src/lib.rs"
gst-plugin-version-helper = { path="../../version-helper" }
[features]
-# GStreamer 1.14 is required for static linking
-static = ["gst/v1_14"]
+static = []
capi = []
[package.metadata.capi]