diff options
author | Marvin W <git@larma.de> | 2021-11-09 22:06:49 +0100 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2021-11-10 11:05:34 +0100 |
commit | f398135bc8a21343058f7861abfc083337bc401d (patch) | |
tree | b467cbbdc82d89b5d5dc60e5a2efbae1db5fe317 /plugins/rtp/src | |
parent | dfda2f25f0b1d0b7e0cecf269265ca81ae1d506b (diff) | |
download | dino-f398135bc8a21343058f7861abfc083337bc401d.tar.gz dino-f398135bc8a21343058f7861abfc083337bc401d.zip |
RTP: Make opus mono-channel
Diffstat (limited to 'plugins/rtp/src')
-rw-r--r-- | plugins/rtp/src/module.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/rtp/src/module.vala b/plugins/rtp/src/module.vala index dfe224aa..4f48b6c4 100644 --- a/plugins/rtp/src/module.vala +++ b/plugins/rtp/src/module.vala @@ -63,7 +63,7 @@ public class Dino.Plugins.Rtp.Module : JingleRtp.Module { return supported; } - private async bool is_payload_supported(string media, JingleRtp.PayloadType payload_type) { + public override async bool is_payload_supported(string media, JingleRtp.PayloadType payload_type) { string? codec = CodecUtil.get_codec_from_payload(media, payload_type); if (codec == null) return false; if (unsupported_codecs.contains(codec)) return false; @@ -131,7 +131,7 @@ public class Dino.Plugins.Rtp.Module : JingleRtp.Module { public override async Gee.List<JingleRtp.PayloadType> get_supported_payloads(string media) { Gee.List<JingleRtp.PayloadType> list = new ArrayList<JingleRtp.PayloadType>(JingleRtp.PayloadType.equals_func); if (media == "audio") { - var opus = new JingleRtp.PayloadType() { channels = 2, clockrate = 48000, name = "opus", id = 99 }; + var opus = new JingleRtp.PayloadType() { channels = 1, clockrate = 48000, name = "opus", id = 99 }; opus.parameters["useinbandfec"] = "1"; var speex32 = new JingleRtp.PayloadType() { channels = 1, clockrate = 32000, name = "speex", id = 100 }; var speex16 = new JingleRtp.PayloadType() { channels = 1, clockrate = 16000, name = "speex", id = 101 }; |