mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
rtpsession: compute the average correctly scaled
This commit is contained in:
parent
64e4ffa25b
commit
cb6de429a0
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ enum
|
|||
if ((avg) == 0) \
|
||||
(avg) = (val) << 4; \
|
||||
else \
|
||||
(avg) = ((val) + (15 * (avg))) >> 4;
|
||||
(avg) = ((val) + (15 * (avg)));
|
||||
|
||||
/* The number RTCP intervals after which to timeout entries in the
|
||||
* collision table
|
||||
|
|
Loading…
Reference in a new issue