Remove old WebRTC-NewVideoJitterBuffer used for testing the NackModule.
This experiment was used to test the NackModule but will soon (tm) be used to test the completly new video jitter buffer. BUG=webrtc:5514 R=stefan@webrtc.org Review URL: https://codereview.webrtc.org/2123913002 . Cr-Commit-Position: refs/heads/master@{#13395}
This commit is contained in:
@ -94,10 +94,6 @@ void VideoReceiver::Process() {
|
||||
RequestKeyFrame();
|
||||
}
|
||||
|
||||
if (_receiver.TimeUntilNextProcess() == 0) {
|
||||
_receiver.Process();
|
||||
}
|
||||
|
||||
// Packet retransmission requests
|
||||
// TODO(holmer): Add API for changing Process interval and make sure it's
|
||||
// disabled when NACK is off.
|
||||
@ -138,8 +134,6 @@ int64_t VideoReceiver::TimeUntilNextProcess() {
|
||||
}
|
||||
timeUntilNextProcess =
|
||||
VCM_MIN(timeUntilNextProcess, _keyRequestTimer.TimeUntilProcess());
|
||||
timeUntilNextProcess =
|
||||
VCM_MIN(timeUntilNextProcess, _receiver.TimeUntilNextProcess());
|
||||
|
||||
return timeUntilNextProcess;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user