Reorganise plugins into directories by function

This should start making navigating the tree a little easier to start
with, and we can then move to allowing building specific groups of
plugins as well.

The plugins are moved into the following hierarchy:

  audio
    / gst-plugin-audiofx
    / gst-plugin-claxon
    / gst-plugin-csound
    / gst-plugin-lewton
  generic
    / gst-plugin-file
    / gst-plugin-sodium
    / gst-plugin-threadshare
  net
    / gst-plugin-reqwest
    / gst-plugin-rusoto
  utils
    / gst-plugin-fallbackswitch
    / gst-plugin-togglerecord
  video
    / gst-plugin-cdg
    / gst-plugin-closedcaption
    / gst-plugin-dav1d
    / gst-plugin-flv
    / gst-plugin-gif
    / gst-plugin-rav1e

  gst-plugin-tutorial
  gst-plugin-version-helper
This commit is contained in:
Arun Raghavan 2020-04-03 19:26:41 -04:00 committed by Arun Raghavan
parent 5d992692f0
commit 205b6040fb
187 changed files with 34 additions and 34 deletions

View file

@ -1,25 +1,25 @@
[workspace]
members = [
"gst-plugin-dav1d",
"gst-plugin-file",
"gst-plugin-reqwest",
"gst-plugin-flv",
"gst-plugin-audiofx",
"gst-plugin-togglerecord",
"gst-plugin-threadshare",
"gst-plugin-tutorial",
"gst-plugin-closedcaption",
"gst-plugin-version-helper",
"gst-plugin-sodium",
"gst-plugin-cdg",
"gst-plugin-rav1e",
"gst-plugin-rusoto",
"gst-plugin-fallbackswitch",
"gst-plugin-lewton",
"gst-plugin-claxon",
"gst-plugin-gif",
"gst-plugin-csound",
"audio/gst-plugin-audiofx",
"audio/gst-plugin-claxon",
"audio/gst-plugin-csound",
"audio/gst-plugin-lewton",
"generic/gst-plugin-file",
"generic/gst-plugin-sodium",
"generic/gst-plugin-threadshare",
"net/gst-plugin-reqwest",
"net/gst-plugin-rusoto",
"utils/gst-plugin-fallbackswitch",
"utils/gst-plugin-togglerecord",
"video/gst-plugin-cdg",
"video/gst-plugin-closedcaption",
"video/gst-plugin-dav1d",
"video/gst-plugin-flv",
"video/gst-plugin-gif",
"video/gst-plugin-rav1e",
]
[profile.release]

View file

@ -27,4 +27,4 @@ gstreamer-check = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs
gstreamer-app = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
[build-dependencies]
gst-plugin-version-helper = { path="../gst-plugin-version-helper" }
gst-plugin-version-helper = { path="../../gst-plugin-version-helper" }

View file

@ -22,4 +22,4 @@ crate-type = ["cdylib", "rlib"]
path = "src/lib.rs"
[build-dependencies]
gst-plugin-version-helper = { path="../gst-plugin-version-helper" }
gst-plugin-version-helper = { path="../../gst-plugin-version-helper" }

View file

@ -27,4 +27,4 @@ name = "csound-effect"
path = "examples/effect_example.rs"
[build-dependencies]
gst-plugin-version-helper = { path = "../gst-plugin-version-helper" }
gst-plugin-version-helper = { path = "../../gst-plugin-version-helper" }

View file

@ -23,4 +23,4 @@ crate-type = ["cdylib", "rlib"]
path = "src/lib.rs"
[build-dependencies]
gst-plugin-version-helper = { path="../gst-plugin-version-helper" }
gst-plugin-version-helper = { path="../../gst-plugin-version-helper" }

View file

@ -19,4 +19,4 @@ crate-type = ["cdylib"]
path = "src/lib.rs"
[build-dependencies]
gst-plugin-version-helper = { path="../gst-plugin-version-helper" }
gst-plugin-version-helper = { path="../../gst-plugin-version-helper" }

View file

@ -54,4 +54,4 @@ path = "examples/decrypt_example.rs"
required-features = ["serde", "serde_json", "clap"]
[build-dependencies]
gst-plugin-version-helper = { path="../gst-plugin-version-helper" }
gst-plugin-version-helper = { path="../../gst-plugin-version-helper" }

View file

@ -48,6 +48,6 @@ name = "tcpclientsrc-benchmark-sender"
path = "examples/tcpclientsrc_benchmark_sender.rs"
[build-dependencies]
gst-plugin-version-helper = { path="../gst-plugin-version-helper" }
gst-plugin-version-helper = { path="../../gst-plugin-version-helper" }
cc = "1.0.38"
pkg-config = "0.3.15"

View file

@ -28,4 +28,4 @@ crate-type = ["cdylib", "rlib"]
path = "src/lib.rs"
[build-dependencies]
gst-plugin-version-helper = { path="../gst-plugin-version-helper" }
gst-plugin-version-helper = { path="../../gst-plugin-version-helper" }

View file

@ -26,4 +26,4 @@ crate-type = ["cdylib", "rlib"]
path = "src/lib.rs"
[build-dependencies]
gst-plugin-version-helper = { path="../gst-plugin-version-helper" }
gst-plugin-version-helper = { path="../../gst-plugin-version-helper" }

View file

@ -37,7 +37,7 @@ path = "examples/gtk_fallbackswitch.rs"
required-features = ["gtk", "gio"]
[build-dependencies]
gst-plugin-version-helper = { path="../gst-plugin-version-helper" }
gst-plugin-version-helper = { path="../../gst-plugin-version-helper" }
cc = "1.0"
pkg-config = "0.3"

Some files were not shown because too many files have changed in this diff Show more