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>2023-01-05 13:32:01 +0300
committerSebastian Dröge <sebastian@centricular.com>2023-01-05 13:33:54 +0300
commit27435ad82eaad2745fa144d837e7c4d818d3099f (patch)
treec9e2a446b8a5726ae9b8a32cecd8bf1e61c2255e /audio
parentd846f527af8ed8bf9072aa1b32268390fede16e6 (diff)
Update for API changes
Diffstat (limited to 'audio')
-rw-r--r--audio/audiofx/examples/hrtfrender.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/audiofx/examples/hrtfrender.rs b/audio/audiofx/examples/hrtfrender.rs
index 61d70988c..86a71b621 100644
--- a/audio/audiofx/examples/hrtfrender.rs
+++ b/audio/audiofx/examples/hrtfrender.rs
@@ -110,7 +110,7 @@ fn run() -> Result<(), Error> {
match msg.view() {
MessageView::StateChanged(state_changed) => {
- if state_changed.src().map(|s| s == pipeline).unwrap_or(false)
+ if state_changed.src().map(|s| s == &pipeline).unwrap_or(false)
&& state_changed.current() == gst::State::Playing
{
let (lock, cvar) = &*state_cond;