[Sumover-dev] [svn commit] r4272 - vic/branches/cc/rtp

sumover-dev at cs.ucl.ac.uk sumover-dev at cs.ucl.ac.uk
Fri Aug 15 12:24:39 BST 2008


Author: soohyunc
Date: Fri Aug 15 12:24:39 2008
New Revision: 4272

Modified:
   vic/branches/cc/rtp/session.cpp

Log:
o  we don't need to send timestamp and timestamp echo back and forward. we can
   manange timestamp vector per packet seqno in the sender side, therefore,
   commented out "send_ts()" and "send_ts_echo()".


Modified: vic/branches/cc/rtp/session.cpp
==============================================================================
--- vic/branches/cc/rtp/session.cpp	(original)
+++ vic/branches/cc/rtp/session.cpp	Fri Aug 15 12:24:39 2008
@@ -466,7 +466,7 @@
 		// upon every RTP data packet transmission.
 		if(is_cc_on()) {
 			ch_[0].send_aoa();	// send ack of ack
-			ch_[0].send_ts();	// send time stamp
+			//ch_[0].send_ts();	// send time stamp
 		}
 	}
 }
@@ -676,7 +676,7 @@
 		// get timestamp from TfwcSndr
 		xr->chunk = htonl(tfwc_sndr_get_ts());
 
-		debug_msg("	TS:		%d\n", tfwc_sndr_get_ts());
+		debug_msg("	TS:		%ld\n", tfwc_sndr_get_ts());
 	}
 
 	++xr;
@@ -1185,7 +1185,7 @@
 
 		// send receiver side XR report
 		ch_[0].send_ackv(xr);
-		ch_[0].send_ts_echo(xr);
+		//ch_[0].send_ts_echo(xr);
 	}
 	// we received ackvec, so do sender stuffs here
 	else {



More information about the Sumover-dev mailing list