Increase size of pacer window to 500 ms as that better matches the encoder.

BUG=1812
R=andresp@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/4129006

git-svn-id: http://webrtc.googlecode.com/svn/trunk@5154 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
stefan@webrtc.org 2013-11-21 14:37:11 +00:00
parent 331d4402fc
commit ef2d55461b

View File

@ -107,7 +107,7 @@ class IntervalBudget {
void UseBudget(int bytes) {
bytes_remaining_ = std::max(bytes_remaining_ - bytes,
-100 * target_rate_kbps_ / 8);
-500 * target_rate_kbps_ / 8);
}
int bytes_remaining() const { return bytes_remaining_; }