denicija | d17d536 | 2016-11-02 02:56:09 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2016 The WebRTC Project Authors. All rights reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
denicija | 2256e04 | 2016-11-09 06:26:18 -0800 | [diff] [blame] | 11 | #import "ARDSettingsStore.h" |
denicija | d17d536 | 2016-11-02 02:56:09 -0700 | [diff] [blame] | 12 | |
denicija | 9af2b60 | 2016-11-17 00:43:43 -0800 | [diff] [blame] | 13 | static NSString *const kMediaConstraintsKey = @"rtc_video_resolution_media_constraints_key"; |
| 14 | static NSString *const kBitrateKey = @"rtc_max_bitrate_key"; |
denicija | d17d536 | 2016-11-02 02:56:09 -0700 | [diff] [blame] | 15 | |
| 16 | NS_ASSUME_NONNULL_BEGIN |
denicija | 9af2b60 | 2016-11-17 00:43:43 -0800 | [diff] [blame] | 17 | @interface ARDSettingsStore () { |
| 18 | NSUserDefaults *_storage; |
| 19 | } |
| 20 | @property(nonatomic, strong) NSUserDefaults *storage; |
| 21 | @end |
| 22 | |
denicija | 2256e04 | 2016-11-09 06:26:18 -0800 | [diff] [blame] | 23 | @implementation ARDSettingsStore |
denicija | d17d536 | 2016-11-02 02:56:09 -0700 | [diff] [blame] | 24 | |
denicija | 9af2b60 | 2016-11-17 00:43:43 -0800 | [diff] [blame] | 25 | - (NSUserDefaults *)storage { |
| 26 | if (!_storage) { |
| 27 | _storage = [NSUserDefaults standardUserDefaults]; |
| 28 | } |
| 29 | return _storage; |
denicija | d17d536 | 2016-11-02 02:56:09 -0700 | [diff] [blame] | 30 | } |
| 31 | |
denicija | 9af2b60 | 2016-11-17 00:43:43 -0800 | [diff] [blame] | 32 | - (nullable NSString *)videoResolutionConstraints { |
| 33 | return [self.storage objectForKey:kMediaConstraintsKey]; |
| 34 | } |
| 35 | |
| 36 | - (void)setVideoResolutionConstraints:(NSString *)constraintsString { |
| 37 | [self.storage setObject:constraintsString forKey:kMediaConstraintsKey]; |
| 38 | [self.storage synchronize]; |
| 39 | } |
| 40 | |
| 41 | - (nullable NSNumber *)maxBitrate { |
| 42 | return [self.storage objectForKey:kBitrateKey]; |
| 43 | } |
| 44 | |
| 45 | - (void)setMaxBitrate:(nullable NSNumber *)value { |
| 46 | [self.storage setObject:value forKey:kBitrateKey]; |
| 47 | [self.storage synchronize]; |
denicija | d17d536 | 2016-11-02 02:56:09 -0700 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | @end |
| 51 | NS_ASSUME_NONNULL_END |