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/net/rtp
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2023-01-31 13:24:07 +0300
committerSebastian Dröge <sebastian@centricular.com>2023-01-31 13:24:07 +0300
commit560bdc4cb7029ce943830090d047b4f1760e3e7e (patch)
treeffe3473a20433e4fafcbef1f9df0c99f392b815b /net/rtp
parent33696a8aed8137996671e421eef71c82cb68880a (diff)
Update for glib API changes
Diffstat (limited to 'net/rtp')
-rw-r--r--net/rtp/src/av1/depay/mod.rs2
-rw-r--r--net/rtp/src/av1/pay/mod.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/net/rtp/src/av1/depay/mod.rs b/net/rtp/src/av1/depay/mod.rs
index c6411a6c..ba251f18 100644
--- a/net/rtp/src/av1/depay/mod.rs
+++ b/net/rtp/src/av1/depay/mod.rs
@@ -20,7 +20,7 @@ glib::wrapper! {
impl RTPAv1Depay {
pub fn new() -> Self {
- glib::Object::new_default()
+ glib::Object::new()
}
}
diff --git a/net/rtp/src/av1/pay/mod.rs b/net/rtp/src/av1/pay/mod.rs
index b7d6b38d..f046b0cb 100644
--- a/net/rtp/src/av1/pay/mod.rs
+++ b/net/rtp/src/av1/pay/mod.rs
@@ -20,7 +20,7 @@ glib::wrapper! {
impl RTPAv1Pay {
pub fn new() -> Self {
- glib::Object::new_default()
+ glib::Object::new()
}
}