Index: webrtc/call/call.h |
diff --git a/webrtc/call/call.h b/webrtc/call/call.h |
index 842ed60887bd855ffa9472a05700f564edc06b70..54c1ca494ef691defda3a80b57d253e612756793 100644 |
--- a/webrtc/call/call.h |
+++ b/webrtc/call/call.h |
@@ -16,6 +16,7 @@ |
#include <vector> |
#include "webrtc/api/rtcerror.h" |
+#include "webrtc/base/bitrateallocationstrategy.h" |
#include "webrtc/base/networkroute.h" |
#include "webrtc/base/platform_file.h" |
#include "webrtc/base/socket.h" |
@@ -183,6 +184,9 @@ class Call { |
virtual void SetBitrateConfigMask( |
const Config::BitrateConfigMask& bitrate_mask) = 0; |
+ virtual void SetBitrateAllocationStrategy( |
+ rtc::BitrateAllocationStrategy* bitrate_allocation_strategy) = 0; |
+ |
// TODO(skvlad): When the unbundled case with multiple streams for the same |
// media type going over different networks is supported, track the state |
// for each stream separately. Right now it's global per media type. |