This website works better with JavaScript.
Home
Explore
Help
Sign In
RuhNetConsulting
/
rtpengine
mirror of
https://github.com/sipwise/rtpengine
Watch
1
Star
1
Fork
0
Code
Issues
0
Projects
0
Releases
822
Wiki
Activity
Browse Source
fix: mos calc
pull/1216/head
Dup4
5 years ago
parent
64de499865
commit
0e2a0b9861
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
daemon/ssrc.c
+ 1
- 1
daemon/ssrc.c
View File
@ -66,7 +66,7 @@ static void mos_calc(struct ssrc_stats_block *ssb) {
if
(
eff_rtt
<
160
)
r
=
93.2
-
eff_rtt
/
40.0
;
else
r
=
93.2
-
(
eff_rtt
-
120
)
/
4
0.0
;
r
=
93.2
-
(
eff_rtt
-
120
)
/
1
0.0
;
r
=
r
-
(
ssb
-
>
packetloss
*
2.5
)
;
if
(
r
<
0
)
r
=
0
;
Write
Preview
Loading…
Cancel
Save