Index: webrtc/examples/objc/AppRTCMobile/ios/ARDSettingsModel.h |
diff --git a/webrtc/examples/objc/AppRTCMobile/ios/ARDSettingsModel.h b/webrtc/examples/objc/AppRTCMobile/ios/ARDSettingsModel.h |
index 9c8b5c5f62b6d1c4d145da5275e3002e5a44d02a..602a464c8d600bab701fed7ba99b5dc1a5171605 100644 |
--- a/webrtc/examples/objc/AppRTCMobile/ios/ARDSettingsModel.h |
+++ b/webrtc/examples/objc/AppRTCMobile/ios/ARDSettingsModel.h |
@@ -55,5 +55,18 @@ NS_ASSUME_NONNULL_BEGIN |
* @return NSDictionary with RTC width and height parameters |
*/ |
- (nullable NSDictionary *)currentMediaConstraintFromStoreAsRTCDictionary; |
+ |
+/** |
+ * Returns current max bitrate setting from store if present. |
+ */ |
+- (nullable NSNumber *)currentMaxBitrateSettingFromStore; |
+ |
+/** |
+ * Stores the provided bitrate value into the store. |
+ * |
+ * @param bitrate NSNumber representation of the max bitrate value. |
+ */ |
+- (void)storeMaxBitrateSetting:(nullable NSNumber *)bitrate; |
+ |
@end |
NS_ASSUME_NONNULL_END |