Index: webrtc/call/call.cc |
diff --git a/webrtc/call/call.cc b/webrtc/call/call.cc |
index c4ce71625c9b5655ccc9a9d01256f0b7694d86e9..7aeb9243335dc33265fc5924ffe37a71683f3fe6 100644 |
--- a/webrtc/call/call.cc |
+++ b/webrtc/call/call.cc |
@@ -949,20 +949,6 @@ void Call::SetBitrateConfigMask( |
UpdateCurrentBitrateConfig(mask.start_bitrate_bps); |
} |
-namespace { |
- |
-static int MinPositive(int a, int b) { |
- if (a <= 0) { |
- return b; |
- } |
- if (b <= 0) { |
- return a; |
- } |
- return std::min(a, b); |
-} |
- |
-} // namespace |
- |
void Call::UpdateCurrentBitrateConfig(const rtc::Optional<int>& new_start) { |
Config::BitrateConfig updated; |
updated.min_bitrate_bps = |