Index: webrtc/examples/objc/AppRTCMobile/ios/ARDSettingsStore.h |
diff --git a/webrtc/examples/objc/AppRTCMobile/ios/ARDSettingsStore.h b/webrtc/examples/objc/AppRTCMobile/ios/ARDSettingsStore.h |
index 1541e2d63ac89e331a617d9cd10f04f4884bd40f..4338d646c4ceb3a63f321e040aa1c5baba968c64 100644 |
--- a/webrtc/examples/objc/AppRTCMobile/ios/ARDSettingsStore.h |
+++ b/webrtc/examples/objc/AppRTCMobile/ios/ARDSettingsStore.h |
@@ -30,5 +30,16 @@ NS_ASSUME_NONNULL_BEGIN |
*/ |
- (void)setVideoResolutionConstraintsSetting:(NSString *)value; |
+/** |
+ * Returns current max bitrate number stored in the store. |
+ */ |
+- (nullable NSNumber *)maxBitrateSetting; |
+ |
+/** |
+ * Stores the provided value as maximum bitrate setting. |
+ * @param value the number to be stored |
+ */ |
+- (void)setMaxBitrateSetting:(nullable NSNumber *)value; |
+ |
@end |
NS_ASSUME_NONNULL_END |