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/audio
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2021-03-09 16:51:37 +0300
committerSebastian Dröge <sebastian@centricular.com>2021-03-09 18:07:13 +0300
commit2cada57efc92cb4201d999fd214ad9665313c188 (patch)
tree3b3db433d57732dd23dac095438270aef73411d9 /audio
parentaa354058f58ab33ac838ff90e6c8b852b97fd320 (diff)
Update for the subclassing glib/gstreamer bindings API changes
Diffstat (limited to 'audio')
-rw-r--r--audio/audiofx/src/audioecho/imp.rs1
-rw-r--r--audio/audiofx/src/audioloudnorm/imp.rs1
-rw-r--r--audio/audiofx/src/audiornnoise/imp.rs1
-rw-r--r--audio/claxon/src/claxondec/imp.rs1
-rw-r--r--audio/csound/src/filter/imp.rs1
-rw-r--r--audio/lewton/src/lewtondec/imp.rs1
6 files changed, 0 insertions, 6 deletions
diff --git a/audio/audiofx/src/audioecho/imp.rs b/audio/audiofx/src/audioecho/imp.rs
index 106316f09..5f873ec9b 100644
--- a/audio/audiofx/src/audioecho/imp.rs
+++ b/audio/audiofx/src/audioecho/imp.rs
@@ -90,7 +90,6 @@ impl ObjectSubclass for AudioEcho {
const NAME: &'static str = "RsAudioEcho";
type Type = super::AudioEcho;
type ParentType = gst_base::BaseTransform;
- type Instance = gst::subclass::ElementInstanceStruct<Self>;
}
impl ObjectImpl for AudioEcho {
diff --git a/audio/audiofx/src/audioloudnorm/imp.rs b/audio/audiofx/src/audioloudnorm/imp.rs
index 543ec70a1..8be6ad4f4 100644
--- a/audio/audiofx/src/audioloudnorm/imp.rs
+++ b/audio/audiofx/src/audioloudnorm/imp.rs
@@ -1705,7 +1705,6 @@ impl ObjectSubclass for AudioLoudNorm {
const NAME: &'static str = "RsAudioLoudNorm";
type Type = super::AudioLoudNorm;
type ParentType = gst::Element;
- type Instance = gst::subclass::ElementInstanceStruct<Self>;
fn with_class(klass: &Self::Class) -> Self {
let templ = klass.get_pad_template("sink").unwrap();
diff --git a/audio/audiofx/src/audiornnoise/imp.rs b/audio/audiofx/src/audiornnoise/imp.rs
index 8e11d3038..4db4980d9 100644
--- a/audio/audiofx/src/audiornnoise/imp.rs
+++ b/audio/audiofx/src/audiornnoise/imp.rs
@@ -194,7 +194,6 @@ impl ObjectSubclass for AudioRNNoise {
const NAME: &'static str = "AudioRNNoise";
type Type = super::AudioRNNoise;
type ParentType = gst_base::BaseTransform;
- type Instance = gst::subclass::ElementInstanceStruct<Self>;
}
impl ObjectImpl for AudioRNNoise {}
diff --git a/audio/claxon/src/claxondec/imp.rs b/audio/claxon/src/claxondec/imp.rs
index b880ca92d..9a0da76d8 100644
--- a/audio/claxon/src/claxondec/imp.rs
+++ b/audio/claxon/src/claxondec/imp.rs
@@ -43,7 +43,6 @@ impl ObjectSubclass for ClaxonDec {
const NAME: &'static str = "ClaxonDec";
type Type = super::ClaxonDec;
type ParentType = gst_audio::AudioDecoder;
- type Instance = gst::subclass::ElementInstanceStruct<Self>;
}
impl ObjectImpl for ClaxonDec {}
diff --git a/audio/csound/src/filter/imp.rs b/audio/csound/src/filter/imp.rs
index dcc0ea570..c50329fd1 100644
--- a/audio/csound/src/filter/imp.rs
+++ b/audio/csound/src/filter/imp.rs
@@ -318,7 +318,6 @@ impl ObjectSubclass for CsoundFilter {
const NAME: &'static str = "CsoundFilter";
type Type = super::CsoundFilter;
type ParentType = gst_base::BaseTransform;
- type Instance = gst::subclass::ElementInstanceStruct<Self>;
fn new() -> Self {
let csound = Csound::new();
diff --git a/audio/lewton/src/lewtondec/imp.rs b/audio/lewton/src/lewtondec/imp.rs
index d5a09584b..fa1d02358 100644
--- a/audio/lewton/src/lewtondec/imp.rs
+++ b/audio/lewton/src/lewtondec/imp.rs
@@ -49,7 +49,6 @@ impl ObjectSubclass for LewtonDec {
const NAME: &'static str = "LewtonDec";
type Type = super::LewtonDec;
type ParentType = gst_audio::AudioDecoder;
- type Instance = gst::subclass::ElementInstanceStruct<Self>;
}
impl ObjectImpl for LewtonDec {}