Chromium Code Reviews

Side by Side Diff: webrtc/sdk/objc/Framework/Headers/WebRTC/RTCPeerConnection.h

Issue 2877933004: objc wrapper for PeerConnection::SetBitrate (Closed)
Patch Set: Document return value of SetBitrate and rebase. Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
1 /* 1 /*
2 * Copyright 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2015 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 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 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 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 166 matching lines...)
177 /** Apply the supplied RTCSessionDescription as the local description. */ 177 /** Apply the supplied RTCSessionDescription as the local description. */
178 - (void)setLocalDescription:(RTCSessionDescription *)sdp 178 - (void)setLocalDescription:(RTCSessionDescription *)sdp
179 completionHandler: 179 completionHandler:
180 (nullable void (^)(NSError * _Nullable error))completionHandler; 180 (nullable void (^)(NSError * _Nullable error))completionHandler;
181 181
182 /** Apply the supplied RTCSessionDescription as the remote description. */ 182 /** Apply the supplied RTCSessionDescription as the remote description. */
183 - (void)setRemoteDescription:(RTCSessionDescription *)sdp 183 - (void)setRemoteDescription:(RTCSessionDescription *)sdp
184 completionHandler: 184 completionHandler:
185 (nullable void (^)(NSError * _Nullable error))completionHandler; 185 (nullable void (^)(NSError * _Nullable error))completionHandler;
186 186
187 /** Updates bandwidth estimation parameters. Null parameters will be unchanged.
188 * Returns true iff the parameters were successfully updated.
189 */
190 - (BOOL)setBitrateToMin:(NSNumber *_Nullable)minBitrateBps
tkchin_webrtc 2017/08/31 21:20:48 Could you update this with more details? What bit
191 toCurrent:(NSNumber *_Nullable)currentBitrateBps
192 toMax:(NSNumber *_Nullable)maxBitrateBps;
193
187 /** Start or stop recording an Rtc EventLog. */ 194 /** Start or stop recording an Rtc EventLog. */
188 - (BOOL)startRtcEventLogWithFilePath:(NSString *)filePath 195 - (BOOL)startRtcEventLogWithFilePath:(NSString *)filePath
189 maxSizeInBytes:(int64_t)maxSizeInBytes; 196 maxSizeInBytes:(int64_t)maxSizeInBytes;
190 - (void)stopRtcEventLog; 197 - (void)stopRtcEventLog;
191 198
192 @end 199 @end
193 200
194 @interface RTCPeerConnection (Media) 201 @interface RTCPeerConnection (Media)
195 202
196 /** 203 /**
(...skipping 19 matching lines...)
216 */ 223 */
217 - (void)statsForTrack: 224 - (void)statsForTrack:
218 (nullable RTCMediaStreamTrack *)mediaStreamTrack 225 (nullable RTCMediaStreamTrack *)mediaStreamTrack
219 statsOutputLevel:(RTCStatsOutputLevel)statsOutputLevel 226 statsOutputLevel:(RTCStatsOutputLevel)statsOutputLevel
220 completionHandler: 227 completionHandler:
221 (nullable void (^)(NSArray<RTCLegacyStatsReport *> *stats))completionHandler ; 228 (nullable void (^)(NSArray<RTCLegacyStatsReport *> *stats))completionHandler ;
222 229
223 @end 230 @end
224 231
225 NS_ASSUME_NONNULL_END 232 NS_ASSUME_NONNULL_END
OLDNEW

Powered by Google App Engine