gst-plugins-rs/gst-plugin-ndi/Cargo.toml
Daniel Vilar 07a8b8a274 Refactor logic to use multiple streams in the same pipeline
Now it's possible to connect to N streams in the same pipeline. Each new connection will create a new NDI receiver except if it's a empty slot in the receiver.

Each receiver has two slots one to connect to audio and other to connect to video to the same stream.
2018-08-20 11:09:43 +02:00

23 lines
548 B
TOML

[package]
name = "gst-plugin-ndi"
version = "0.1.0"
authors = ["Ruben Gonzalez <rubenrua@teltek.es>", "Daniel Vilar <daniel.peiteado@teltek.es>"]
repository = "https://gitlab.teltek.es/rubenrua/ndi-rs.git"
license = "unknow" # TODO MIT/Apache-2.0
[dependencies]
gst-plugin = "0.2"
glib = "0.5"
gstreamer = "0.11"
gstreamer-base = "0.11"
gstreamer-video = "0.11"
gstreamer-audio = "0.11"
lazy_static = "1.1.0"
byte-slice-cast = "0.1" # TODO delete
num-traits = "0.2" # TODO delete
[lib]
name = "gstndi"
crate-type = ["cdylib"]
path = "src/lib.rs"