mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-10 08:22:32 +00:00
rtpsession: whitespace fixes
This commit is contained in:
parent
65d90baf84
commit
3f629f6001
1 changed files with 8 additions and 8 deletions
|
@ -71,10 +71,10 @@ enum
|
||||||
|
|
||||||
/* update average packet size, we keep this scaled by 16 to keep enough
|
/* update average packet size, we keep this scaled by 16 to keep enough
|
||||||
* precision. */
|
* precision. */
|
||||||
#define UPDATE_AVG(avg, val) \
|
#define UPDATE_AVG(avg, val) \
|
||||||
if ((avg) == 0) \
|
if ((avg) == 0) \
|
||||||
(avg) = (val) << 4; \
|
(avg) = (val) << 4; \
|
||||||
else \
|
else \
|
||||||
(avg) = ((val) + (15 * (avg))) >> 4;
|
(avg) = ((val) + (15 * (avg))) >> 4;
|
||||||
|
|
||||||
/* The number RTCP intervals after which to timeout entries in the
|
/* The number RTCP intervals after which to timeout entries in the
|
||||||
|
|
Loading…
Reference in a new issue