Min BWE default is 10kbps but for audio send side BWE it was overridden to 5kbps. Now audio send side BWE is used for video calls too and should set min to 10kbps in case of video call.
Bug: webrtc:9019 Change-Id: I3896bc8a014e918600d41b305afa5bceca550ee8 Reviewed-on: https://webrtc-review.googlesource.com/61963 Reviewed-by: Björn Terelius <terelius@webrtc.org> Commit-Queue: Alex Narest <alexnarest@webrtc.org> Cr-Commit-Position: refs/heads/master@{#22446}
This commit is contained in:
parent
cc681ccf6b
commit
853715c9a9
@ -19,7 +19,8 @@ namespace congestion_controller {
|
||||
int GetMinBitrateBps() {
|
||||
constexpr int kAudioMinBitrateBps = 5000;
|
||||
constexpr int kMinBitrateBps = 10000;
|
||||
if (webrtc::field_trial::IsEnabled("WebRTC-Audio-SendSideBwe")) {
|
||||
if (webrtc::field_trial::IsEnabled("WebRTC-Audio-SendSideBwe") &&
|
||||
!webrtc::field_trial::IsEnabled("WebRTC-Audio-SendSideBwe-For-Video")) {
|
||||
return kAudioMinBitrateBps;
|
||||
}
|
||||
return kMinBitrateBps;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user