[Webkit-unassigned] [Bug 218762] Stuttering audio from WebRTC in iOS 14.2
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Thu Jan 7 01:25:42 PST 2021
https://bugs.webkit.org/show_bug.cgi?id=218762
Tim Panton <tim at pi.pe> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |tim at pi.pe
--- Comment #42 from Tim Panton <tim at pi.pe> ---
We haven't had this problem in rendezvous.family or rendezvous.zone - But we have ptime set to 60ms - perhaps that is a work around for others too.
Here is a munge :
function tweakSDP(sdp){
var lines = sdp.split("\r\n");
for (var i=0;i<lines.length;i++){
var line = lines[i];
if (line.startsWith("a=fmtp:111")){
lines[i]= "a=fmtp:111 minptime=20; stereo=1; ptime=60; useinbandfec=1;";
}
}
return (lines.join("\r\n"));
}
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20210107/30c6ac46/attachment.htm>
More information about the webkit-unassigned
mailing list