mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-12-24 19:10:29 +00:00
Switch gobject-subclass repository URI
This commit is contained in:
parent
5e55ed6b6c
commit
5cac22d1c0
6 changed files with 7 additions and 5 deletions
|
@ -6,7 +6,7 @@ repository = "https://github.com/sdroege/gst-plugin-rs"
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
gobject-subclass = { git = "https://github.com/sdroege/gobject-subclass" }
|
gobject-subclass = { git = "https://github.com/gtk-rs/gobject-subclass" }
|
||||||
gst-plugin = { path="../gst-plugin" }
|
gst-plugin = { path="../gst-plugin" }
|
||||||
glib = { git = "https://github.com/gtk-rs/glib" }
|
glib = { git = "https://github.com/gtk-rs/glib" }
|
||||||
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
|
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
|
||||||
|
|
|
@ -8,7 +8,7 @@ license = "MIT/Apache-2.0"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
url = "1.1"
|
url = "1.1"
|
||||||
glib = { git = "https://github.com/gtk-rs/glib" }
|
glib = { git = "https://github.com/gtk-rs/glib" }
|
||||||
gobject-subclass = { git = "https://github.com/sdroege/gobject-subclass" }
|
gobject-subclass = { git = "https://github.com/gtk-rs/gobject-subclass" }
|
||||||
gst-plugin = { path="../gst-plugin" }
|
gst-plugin = { path="../gst-plugin" }
|
||||||
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
|
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
|
||||||
gstreamer-base = { git = "https://github.com/sdroege/gstreamer-rs" }
|
gstreamer-base = { git = "https://github.com/sdroege/gstreamer-rs" }
|
||||||
|
|
|
@ -8,7 +8,7 @@ license = "LGPL-2.1+"
|
||||||
glib = { git = "https://github.com/gtk-rs/glib" }
|
glib = { git = "https://github.com/gtk-rs/glib" }
|
||||||
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
|
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
|
||||||
gstreamer-video = { git = "https://github.com/sdroege/gstreamer-rs" }
|
gstreamer-video = { git = "https://github.com/sdroege/gstreamer-rs" }
|
||||||
gobject-subclass = { git = "https://github.com/sdroege/gobject-subclass" }
|
gobject-subclass = { git = "https://github.com/gtk-rs/gobject-subclass" }
|
||||||
gst-plugin = { path = "../gst-plugin" }
|
gst-plugin = { path = "../gst-plugin" }
|
||||||
gtk = { git = "https://github.com/gtk-rs/gtk", features = ["v3_6"], optional = true }
|
gtk = { git = "https://github.com/gtk-rs/gtk", features = ["v3_6"], optional = true }
|
||||||
gio = { git = "https://github.com/gtk-rs/gio", optional = true }
|
gio = { git = "https://github.com/gtk-rs/gio", optional = true }
|
||||||
|
|
|
@ -6,7 +6,7 @@ repository = "https://github.com/sdroege/gst-plugin-rs"
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
gobject-subclass = { git = "https://github.com/sdroege/gobject-subclass" }
|
gobject-subclass = { git = "https://github.com/gtk-rs/gobject-subclass" }
|
||||||
gst-plugin = { path="../gst-plugin" }
|
gst-plugin = { path="../gst-plugin" }
|
||||||
glib = { git = "https://github.com/gtk-rs/glib" }
|
glib = { git = "https://github.com/gtk-rs/glib" }
|
||||||
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
|
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
|
||||||
|
|
|
@ -21,12 +21,14 @@ extern crate num_traits;
|
||||||
|
|
||||||
mod rgb2gray;
|
mod rgb2gray;
|
||||||
mod sinesrc;
|
mod sinesrc;
|
||||||
|
mod mixer;
|
||||||
|
|
||||||
// Plugin entry point that should register all elements provided by this plugin,
|
// Plugin entry point that should register all elements provided by this plugin,
|
||||||
// and everything else that this plugin might provide (e.g. typefinders or device providers).
|
// and everything else that this plugin might provide (e.g. typefinders or device providers).
|
||||||
fn plugin_init(plugin: &gst::Plugin) -> bool {
|
fn plugin_init(plugin: &gst::Plugin) -> bool {
|
||||||
rgb2gray::register(plugin);
|
rgb2gray::register(plugin);
|
||||||
sinesrc::register(plugin);
|
sinesrc::register(plugin);
|
||||||
|
mixer::register(plugin);
|
||||||
true
|
true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@ keywords = ["gstreamer", "multimedia", "audio", "video", "gnome"]
|
||||||
libc = "0.2"
|
libc = "0.2"
|
||||||
lazy_static = "1.0"
|
lazy_static = "1.0"
|
||||||
byteorder = "1.0"
|
byteorder = "1.0"
|
||||||
gobject-subclass = { git = "https://github.com/sdroege/gobject-subclass" }
|
gobject-subclass = { git = "https://github.com/gtk-rs/gobject-subclass" }
|
||||||
glib-sys = { git = "https://github.com/gtk-rs/sys" }
|
glib-sys = { git = "https://github.com/gtk-rs/sys" }
|
||||||
gobject-sys = { git = "https://github.com/gtk-rs/sys" }
|
gobject-sys = { git = "https://github.com/gtk-rs/sys" }
|
||||||
gstreamer-sys = { git = "https://github.com/sdroege/gstreamer-sys" }
|
gstreamer-sys = { git = "https://github.com/sdroege/gstreamer-sys" }
|
||||||
|
|
Loading…
Reference in a new issue