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

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/reqwest/src/reqwesthttpsrc.rs2
-rw-r--r--net/rusoto/src/aws_transcribe_parse.rs2
-rw-r--r--net/rusoto/src/s3sink.rs2
-rw-r--r--net/rusoto/src/s3src.rs2
4 files changed, 0 insertions, 8 deletions
diff --git a/net/reqwest/src/reqwesthttpsrc.rs b/net/reqwest/src/reqwesthttpsrc.rs
index c76bd5561..eddfd3fce 100644
--- a/net/reqwest/src/reqwesthttpsrc.rs
+++ b/net/reqwest/src/reqwesthttpsrc.rs
@@ -670,8 +670,6 @@ impl ReqwestHttpSrc {
}
impl ObjectImpl for ReqwestHttpSrc {
- glib_object_impl!();
-
fn set_property(&self, obj: &glib::Object, id: usize, value: &glib::Value) {
let prop = &PROPERTIES[id];
match *prop {
diff --git a/net/rusoto/src/aws_transcribe_parse.rs b/net/rusoto/src/aws_transcribe_parse.rs
index 5fb161fa0..a1c55e5ce 100644
--- a/net/rusoto/src/aws_transcribe_parse.rs
+++ b/net/rusoto/src/aws_transcribe_parse.rs
@@ -1085,8 +1085,6 @@ impl ObjectSubclass for Transcriber {
}
impl ObjectImpl for Transcriber {
- glib_object_impl!();
-
fn constructed(&self, obj: &glib::Object) {
self.parent_constructed(obj);
diff --git a/net/rusoto/src/s3sink.rs b/net/rusoto/src/s3sink.rs
index 74b4d2fd2..21138f5b9 100644
--- a/net/rusoto/src/s3sink.rs
+++ b/net/rusoto/src/s3sink.rs
@@ -418,8 +418,6 @@ impl ObjectSubclass for S3Sink {
}
impl ObjectImpl for S3Sink {
- glib_object_impl!();
-
fn set_property(&self, _obj: &glib::Object, id: usize, value: &glib::Value) {
let prop = &PROPERTIES[id as usize];
let mut settings = self.settings.lock().unwrap();
diff --git a/net/rusoto/src/s3src.rs b/net/rusoto/src/s3src.rs
index 4c51454b9..8c3978907 100644
--- a/net/rusoto/src/s3src.rs
+++ b/net/rusoto/src/s3src.rs
@@ -251,8 +251,6 @@ impl ObjectSubclass for S3Src {
}
impl ObjectImpl for S3Src {
- glib_object_impl!();
-
fn set_property(&self, obj: &glib::Object, id: usize, value: &glib::Value) {
let prop = &PROPERTIES[id as usize];
let basesrc = obj.downcast_ref::<gst_base::BaseSrc>().unwrap();