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
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2020-12-18 01:44:49 +0300
committerSebastian Dröge <sebastian@centricular.com>2020-12-18 01:44:49 +0300
commitea6c05e16ccf0875652e2370eef4839ae819bc34 (patch)
tree4b61e9ffa44e639304dbbff638512d715c6dbad6 /audio/lewton
parent708c6aa57e1dabe35e8304dd878e130501282a7d (diff)
Update everything for glib macro renamings
Diffstat (limited to 'audio/lewton')
-rw-r--r--audio/lewton/src/lewtondec/imp.rs2
-rw-r--r--audio/lewton/src/lewtondec/mod.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/audio/lewton/src/lewtondec/imp.rs b/audio/lewton/src/lewtondec/imp.rs
index 5d6d5d9a..aa5b9575 100644
--- a/audio/lewton/src/lewtondec/imp.rs
+++ b/audio/lewton/src/lewtondec/imp.rs
@@ -50,7 +50,7 @@ impl ObjectSubclass for LewtonDec {
type Instance = gst::subclass::ElementInstanceStruct<Self>;
type Class = subclass::simple::ClassStruct<Self>;
- glib::glib_object_subclass!();
+ glib::object_subclass!();
fn new() -> Self {
Self {
diff --git a/audio/lewton/src/lewtondec/mod.rs b/audio/lewton/src/lewtondec/mod.rs
index 7db96f51..b7cf101a 100644
--- a/audio/lewton/src/lewtondec/mod.rs
+++ b/audio/lewton/src/lewtondec/mod.rs
@@ -10,7 +10,7 @@ use glib::prelude::*;
mod imp;
-glib::glib_wrapper! {
+glib::wrapper! {
pub struct LewtonDec(ObjectSubclass<imp::LewtonDec>) @extends gst_audio::AudioDecoder, gst::Element, gst::Object;
}