Skip to Content.
Sympa Menu

wg-pic - Re: weather algorithm

Subject: Presence and IntComm WG

List archive

Re: weather algorithm


Chronological Thread 
  • From: Ben Teitelbaum <>
  • To: wg-pic <>
  • Subject: Re: weather algorithm
  • Date: Thu, 15 Apr 2004 15:28:02 -0400

Yes (thanks for catching this, Joe!). Here's the current portal code
for G.711:

function loss_to_MOS($percent_loss) {
if ($percent_loss < 0.0) {
$quality = "n/a";
} else if ($percent_loss < 2.0) {
$quality = "Excellent (5)";
} else if ($percent_loss < 4.0) {
$quality = "Good (4)";
} else if ($percent_loss < 6.0) {
$quality = "Fair (3)";
} else if ($percent_loss < 8.0) {
$quality = "Poor (2)";
} else {
$quality = "Objectionable (1)";
}
return $quality;
}

Would someone send me the loss-to-MOS thresholds for GSM?

-- ben

"Rork, Joseph (J.P.)"
<>
writes:

> does switching default codec to GSM affect the network weather
> algorithm?
>
> Regards,
> Joseph Rork
> Associate Architect
> Real-Time Collaborative Applications, SIE
> Ford Motor Company
> Phone: 313-594-6672
> Email:
>
>
> "There are 10 types of people in the world: Those who understand binary,
> and those who don't."


  • Re: weather algorithm, Ben Teitelbaum, 04/15/2004

Archive powered by MHonArc 2.6.16.

Top of Page