Chromium Code Reviews

Unified Diff: webrtc/modules/audio_coding/audio_network_adaptor/config.proto

Issue 2669733002: Add 120ms frame ability to ANA (Closed)
Patch Set: Response to comments. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: webrtc/modules/audio_coding/audio_network_adaptor/config.proto
diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/config.proto b/webrtc/modules/audio_coding/audio_network_adaptor/config.proto
index 302f52c4e386e2191744c943c8d3b8d11d630672..53a4de0217619f341b56b06c930e791c4105f1a4 100644
--- a/webrtc/modules/audio_coding/audio_network_adaptor/config.proto
+++ b/webrtc/modules/audio_coding/audio_network_adaptor/config.proto
@@ -51,6 +51,12 @@ message FrameLengthController {
// Uplink bandwidth above which frame length should switch from 60ms to 20ms.
optional int32 fl_60ms_to_20ms_bandwidth_bps = 4;
+
+ // Uplink bandwidth below which frame length can switch from 60ms to 120ms.
+ optional int32 fl_60ms_to_120ms_bandwidth_bps = 5;
+
+ // Uplink bandwidth above which frame length should switch from 120ms to 60ms.
+ optional int32 fl_120ms_to_60ms_bandwidth_bps = 6;
}
message ChannelController {

Powered by Google App Engine