[Sumover-dev] [svn commit] r4263 - vic/branches/mpeg4/rtp

sumover-dev at cs.ucl.ac.uk sumover-dev at cs.ucl.ac.uk
Tue Aug 12 15:35:31 BST 2008


Author: piers
Date: Tue Aug 12 15:35:30 2008
New Revision: 4263

Modified:
   vic/branches/mpeg4/rtp/rtp.h

Log:
Corrected RTCP header length comment - it's NOT the number of bytes - it IS the
number of 32bit words - 1


Modified: vic/branches/mpeg4/rtp/rtp.h
==============================================================================
--- vic/branches/mpeg4/rtp/rtp.h	(original)
+++ vic/branches/mpeg4/rtp/rtp.h	Tue Aug 12 15:35:30 2008
@@ -97,7 +97,7 @@
 
 struct rtcphdr {
 	u_int16_t rh_flags;	/* T:2 P:1 CNT:5 PT:8 */
-	u_int16_t rh_len;	/* length of message (in bytes) */
+	u_int16_t rh_len;	/* length of message is the number of 32-bit words in the extension, excluding the four-octet extension header (therefore zero is a valid length) */
 	u_int32_t rh_ssrc;	/* synchronization src id */
 };
 



More information about the Sumover-dev mailing list