From 7fb9ce0cf59b4e4d212f9c3ea4068ef3ba2f524a Mon Sep 17 00:00:00 2001 From: "pbos@webrtc.org" Date: Mon, 5 Aug 2013 09:29:50 +0000 Subject: [PATCH] Fix send times in video_full_stack. BUG= R=stefan@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1947004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4481 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/video_engine/test/full_stack.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webrtc/video_engine/test/full_stack.cc b/webrtc/video_engine/test/full_stack.cc index 626da309c..956450e2c 100644 --- a/webrtc/video_engine/test/full_stack.cc +++ b/webrtc/video_engine/test/full_stack.cc @@ -150,9 +150,9 @@ class VideoAnalyzer : public newapi::PacketReceiver, rtp_timestamp_delta_ = header.timestamp - first_send_frame_->timestamp(); first_send_frame_ = NULL; - send_times_[header.timestamp - rtp_timestamp_delta_] = - Clock::GetRealTimeClock()->CurrentNtpInMilliseconds(); } + send_times_[header.timestamp - rtp_timestamp_delta_] = + Clock::GetRealTimeClock()->CurrentNtpInMilliseconds(); } return transport_->SendRTP(packet, length);