From 15960c2b67b527316c06c623566d91a4103ef199 Mon Sep 17 00:00:00 2001 From: "mikhal@webrtc.org" Date: Wed, 13 Mar 2013 20:52:49 +0000 Subject: [PATCH] Increasing size of nack list in buffered mode. Review URL: https://webrtc-codereview.appspot.com/1187007 git-svn-id: http://webrtc.googlecode.com/svn/trunk@3666 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/video_engine/vie_channel.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webrtc/video_engine/vie_channel.cc b/webrtc/video_engine/vie_channel.cc index ae3ba9ffc4..cb1aada92b 100644 --- a/webrtc/video_engine/vie_channel.cc +++ b/webrtc/video_engine/vie_channel.cc @@ -795,8 +795,8 @@ int ViEChannel::SetReceiverBufferingMode(int target_delay_ms) { int ViEChannel::GetRequiredNackListSize(int target_delay_ms) { // The max size of the nack list should be large enough to accommodate the // the number of packets (frames) resulting from the increased delay. - // Roughly estimating for ~20 packets per frame @ 30fps. - return target_delay_ms * 20 * 30 / 1000; + // Roughly estimating for ~40 packets per frame @ 30fps. + return target_delay_ms * 40 * 30 / 1000; } WebRtc_Word32 ViEChannel::SetKeyFrameRequestMethod(