diff options
author | Marvin W <git@larma.de> | 2021-05-01 16:00:37 +0200 |
---|---|---|
committer | Marvin W <git@larma.de> | 2021-05-01 16:00:37 +0200 |
commit | d388525fc69ab688a90f19d2d2499e0f6f10f573 (patch) | |
tree | 74db651fe723e16a12fce3dd25ae8d7d833b247d /plugins/rtp/src/device.vala | |
parent | 23ffd37dded3bf872e42d7a00727ab3c4d105a97 (diff) | |
download | dino-d388525fc69ab688a90f19d2d2499e0f6f10f573.tar.gz dino-d388525fc69ab688a90f19d2d2499e0f6f10f573.zip |
Correctly handle missing webrtc-audio-processing
Diffstat (limited to 'plugins/rtp/src/device.vala')
-rw-r--r-- | plugins/rtp/src/device.vala | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/rtp/src/device.vala b/plugins/rtp/src/device.vala index f8894502..3c650ad6 100644 --- a/plugins/rtp/src/device.vala +++ b/plugins/rtp/src/device.vala @@ -132,12 +132,14 @@ public class Dino.Plugins.Rtp.Device : MediaDevice, Object { filter.@set("caps", get_best_caps()); pipe.add(filter); element.link(filter); +#if WITH_VOICE_PROCESSOR if (media == "audio" && plugin.echoprobe != null) { - dsp = new VoiceProcessor(plugin.echoprobe, element as Gst.Audio.StreamVolume); + dsp = new VoiceProcessor(plugin.echoprobe as EchoProbe, element as Gst.Audio.StreamVolume); dsp.name = @"dsp_$id"; pipe.add(dsp); filter.link(dsp); } +#endif tee = Gst.ElementFactory.make("tee", @"tee_$id"); tee.@set("allow-not-linked", true); pipe.add(tee); |