Skip to content
This repository was archived by the owner on Oct 25, 2024. It is now read-only.

Commit dae986e

Browse files
authored
Flush all packets in ProcessPackets for low latency mode. (#187)
It only applies to low latency mode as we expect optimized BWE can avoid burst and congestion.
1 parent 39e3528 commit dae986e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/pacing/pacing_controller.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ void PacingController::ProcessPackets() {
501501
target_send_time = NextSendTime();
502502
if (target_send_time > now) {
503503
// Exit loop if not probing.
504-
if (!is_probing) {
504+
if (!is_probing && !low_latency_mode_) {
505505
break;
506506
}
507507
target_send_time = now;

0 commit comments

Comments
 (0)