<div dir="ltr">Thank you for taking the time to look into this and reply. It is very appreciated.<div><br></div><div>I've done some more testing to get as few variables as possible from the tests I'm doing. This time around I've disable genericplc in codecs.conf to check the results from the opus fec option. With two users using the opus codec. When using the Dial application a 10% packet loss yields a decent audio quality. When using the Confbridge application the audio is VERY degraded.</div><div><br></div><div>I've added JITTERBUFFER to all channels and added the option to the confbridge bridge.</div><div>I've configured opus with fec=yes and have tried packet_loss=0 and packet_loss=50 with no difference in sound quality.</div><div>I've used the following command on the laptop running one of the softphone to simulate packet loss</div><div>sudo tc qdisc add dev enp0s31f6 root netem delay 2000ms 100ms 10% distribution normal</div><div><br></div><div>Would I be able to dig deeper into this problem with the Asterisk sources only or does it sound like a problem in the codec implementation?</div><div><br></div><div>Thanks again for your time.</div><div><br></div><div>- Pascal Cadotte Michaud</div><div><br></div><div><br></div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Le mer. 20 oct. 2021 à 01:43, Olle E. Johansson <<a href="mailto:oej@edvina.net">oej@edvina.net</a>> a écrit :<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><br>
<br>
> On 19 Oct 2021, at 21:56, Matt Fredrickson <<a href="mailto:mfredrickson@sangoma.com" target="_blank">mfredrickson@sangoma.com</a>> wrote:<br>
> <br>
> On Thu, Oct 14, 2021 at 2:37 PM Pascal Cadotte <<a href="mailto:pcm@wazo.io" target="_blank">pcm@wazo.io</a>> wrote:<br>
>> <br>
>> Hello everyone,<br>
>> <br>
>> We've been trying to improve the quality of our video conferences using confbridge. We've been able to figure out how to get the video usable for all participants even for users using bad internet connections using the REMB configuration options.<br>
>> <br>
>> However, we are still having problems getting decent audio when there's packet loss. We think this is because PLC is not used for channels in confbridge. We found that information in this page <a href="https://wiki.asterisk.org/wiki/display/AST/PLC+Restrictions+and+Caveats" rel="noreferrer" target="_blank">https://wiki.asterisk.org/wiki/display/AST/PLC+Restrictions+and+Caveats</a> "In addition, MeetMe and ConfBridge calls will not use PLC."<br>
>> <br>
>> We are looking into ways to improve this situation and would like to gather some information about this restriction before working on it.<br>
>> <br>
>> 1. Does anyone know why PLC has not been implemented for meetme and confbridge?<br>
>> 2. Is there a known workaround to allow a channel to have PLC enabled while being in confbridge?<br>
>> 3. Is it a problem many people have? I've only seen this question that seems to be related <a href="https://community.asterisk.org/t/jitterbuffer-plc-fec-etc-how-do-i-know-they-are-working/85146" rel="noreferrer" target="_blank">https://community.asterisk.org/t/jitterbuffer-plc-fec-etc-how-do-i-know-they-are-working/85146</a><br>
>> 4. Is there something in progress that we could contribute to?<br>
>> <br>
>> The tests have been made using the opus codec, PJSIP on a WSS transport on Asterisk 18.6.0.<br>
>> <br>
>> Given two users Alice and Bob<br>
>> Given a 10% paquet loss on Alice<br>
>> When Alice and Bob are talking through confbridge Bob hears a lot of cracking<br>
>> When Alice and Bob are talking to each other using the Dial application to call Bob's phone, the call quality is almost flawless<br>
> <br>
> I'll take a quick stab at an answer here.  I went looking at<br>
> translate.c, plc.c, and channel.c, and here are some notes that I<br>
> wrote as I was trying to remember how this works:<br>
> <br>
> The generic plc code in Asterisk was written a long time ago and can<br>
> be only used for 8 KHz SLINEAR, not for other sample rates.  I'd<br>
> presume that this means a codec such as OPUS needs to output to 8KHz<br>
> SLINEAR somehow to even start using the generic PLC code.<br>
> <br>
> It appears that generic plc is actually calling the concealment<br>
> functions when making a write to an ast_channel (so after a frame is<br>
> produced from a mixing bridge presumably and goes out to a channel<br>
> driver) - not on the reception side, reading a frame from a channel.<br>
> (channel.c)  Unless someone else wants to go look at and correct me, I<br>
> would assume that that means concealment comes after a bridge mixes<br>
> frames together and presumably all input information about packet loss<br>
> is wiped clean (meaning no generic PLC is happening with a mixing<br>
> bridge).<br>
> <br>
> Looking at the codecs that support native PLC (such iLBC, speex, etc)<br>
> it looks like they implement this on the conversion to SLINEAR (and<br>
> correspondingly on an ast_read on the channel in quesiton), which<br>
> should work for a case where you have a confbridge or meetme involved.<br>
> <br>
> For Sangoma's codec_opus, we have support for its native PLC and FEC<br>
> functionality also, so I'd make sure that you have fec=yes enabled for<br>
> its entry in codecs.conf.<br>
> <br>
> I'd also make sure you have jitterbuffer enabled on any<br>
> channels/conferences in question for good measure.<br>
> <br>
> So, to sum it up:<br>
> If you're using OPUS, use the opus native fec option (I think PLC<br>
> should be happening also automatically as well) and make sure that the<br>
> jitterbuffer is enabled on the channels/conferences in question.<br>
> <br>
> If you'd like to use a codec with non-native PLC, you're going to need<br>
> to figure out how to get the generic PLC code working on the<br>
> ast_read() instead of the ast_write() to the channel in question.<br>
> (hoping my assumptions about some of this is correct too :-) )<br>
> <br>
> Hope that helps,<br>
> Matthew Fredrickson<br>
<br>
I had this problem with pure RTP channels using ALAW. To fix it, since G.711 is a simple codec, I wrote “Poor mans PLC” where the RTP channel just copied the previoius packet up to a maximum number of packets. This fixed our problem, but it was very specific and very crude.<br>
There was settings in rtp.conf and possibly sip.conf to enable this.<br>
<br>
The code was published in one of my branches but never integrated into asterisk as far as I remember.<br>
<br>
/O<br>
-- <br>
_____________________________________________________________________<br>
-- Bandwidth and Colocation Provided by <a href="http://www.api-digital.com" rel="noreferrer" target="_blank">http://www.api-digital.com</a> --<br>
<br>
asterisk-dev mailing list<br>
To UNSUBSCRIBE or update options visit:<br>
   <a href="http://lists.digium.com/mailman/listinfo/asterisk-dev" rel="noreferrer" target="_blank">http://lists.digium.com/mailman/listinfo/asterisk-dev</a></blockquote></div>