rtpsession: whitespace fixes
This commit is contained in:
parent
65d90baf84
commit
3f629f6001
@ -71,10 +71,10 @@ enum
|
||||
|
||||
/* update average packet size, we keep this scaled by 16 to keep enough
|
||||
* precision. */
|
||||
#define UPDATE_AVG(avg, val) \
|
||||
if ((avg) == 0) \
|
||||
(avg) = (val) << 4; \
|
||||
else \
|
||||
#define UPDATE_AVG(avg, val) \
|
||||
if ((avg) == 0) \
|
||||
(avg) = (val) << 4; \
|
||||
else \
|
||||
(avg) = ((val) + (15 * (avg))) >> 4;
|
||||
|
||||
/* The number RTCP intervals after which to timeout entries in the
|
||||
|
Loading…
x
Reference in New Issue
Block a user