diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2018-03-21 09:01:31 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2018-03-21 09:01:31 +0000 |
commit | 4e5091b83adf844532f0351b1653c0adbe96cf20 (patch) | |
tree | 97b166eb5c19e49f1d10dada1761969bc2dfc161 /net/rtptools/files/patch-rtp.h | |
parent | - Update to 0.0.3 (diff) |
net/rtptools: Update to 1.22
Port changes:
* Change to DISTVERSION
* License changed to BSD3CLAUSE
* Add 2 more executables
* Update PORTDOCS
* Add 'html' target for DOCS
Reported by: portscout
Notes
Notes:
svn path=/head/; revision=465161
Diffstat (limited to 'net/rtptools/files/patch-rtp.h')
-rw-r--r-- | net/rtptools/files/patch-rtp.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/net/rtptools/files/patch-rtp.h b/net/rtptools/files/patch-rtp.h index 456bb3dce34c..469b663d5dba 100644 --- a/net/rtptools/files/patch-rtp.h +++ b/net/rtptools/files/patch-rtp.h @@ -1,6 +1,6 @@ ---- rtp.h.orig 2001-12-29 12:48:24 UTC +--- rtp.h.orig 2018-03-20 06:17:35 UTC +++ rtp.h -@@ -112,13 +112,18 @@ typedef struct { +@@ -130,13 +130,18 @@ typedef struct { #define RTCP_VALID_MASK (0xc000 | 0x2000 | 0xfe) #define RTCP_VALID_VALUE ((RTP_VERSION << 14) | RTCP_SR) @@ -13,11 +13,11 @@ * Reception report block */ typedef struct { - u_int32 ssrc; /* data source being reported */ + uint32_t ssrc; /* data source being reported */ - unsigned int fraction:8; /* fraction lost since last SR/RR */ - int lost:24; /* cumul. no. pkts lost (signed!) */ -+ u_int32 fraclost; /* fraction lost since last SR/RR and */ -+ /* cumul. no. pkts lost (signed!) */ - u_int32 last_seq; /* extended last seq. no. received */ - u_int32 jitter; /* interarrival jitter */ - u_int32 lsr; /* last SR packet from this source */ ++ uint32_t fraclost; /* fraction lost since last SR/RR and */ ++ /* cumul. no. pkts lost (signed!) */ + uint32_t last_seq; /* extended last seq. no. received */ + uint32_t jitter; /* interarrival jitter */ + uint32_t lsr; /* last SR packet from this source */ |