OLD | NEW |
---|---|
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 11 matching lines...) Expand all Loading... | |
22 @class RTCPeerConnection; | 22 @class RTCPeerConnection; |
23 @class RTCVideoSource; | 23 @class RTCVideoSource; |
24 @class RTCVideoTrack; | 24 @class RTCVideoTrack; |
25 @protocol RTCPeerConnectionDelegate; | 25 @protocol RTCPeerConnectionDelegate; |
26 | 26 |
27 RTC_EXPORT | 27 RTC_EXPORT |
28 @interface RTCPeerConnectionFactory : NSObject | 28 @interface RTCPeerConnectionFactory : NSObject |
29 | 29 |
30 - (instancetype)init NS_DESIGNATED_INITIALIZER; | 30 - (instancetype)init NS_DESIGNATED_INITIALIZER; |
31 | 31 |
32 - (BOOL) startAecDump:(int)fileDescriptor | |
tkchin_webrtc
2016/08/24 00:42:20
nit: no space after (BOOL)
peah-webrtc
2016/08/25 09:25:08
Done.
| |
33 fileSizeLimitBytes:(int)fileSizeLimitBytes; | |
34 | |
35 - (void)stopAecDump; | |
36 | |
32 /** Initialize an RTCAVFoundationVideoSource with constraints. */ | 37 /** Initialize an RTCAVFoundationVideoSource with constraints. */ |
33 - (RTCAVFoundationVideoSource *)avFoundationVideoSourceWithConstraints: | 38 - (RTCAVFoundationVideoSource *)avFoundationVideoSourceWithConstraints: |
34 (nullable RTCMediaConstraints *)constraints; | 39 (nullable RTCMediaConstraints *)constraints; |
35 | 40 |
36 /** Initialize an RTCAudioTrack with an id. */ | 41 /** Initialize an RTCAudioTrack with an id. */ |
37 - (RTCAudioTrack *)audioTrackWithTrackId:(NSString *)trackId; | 42 - (RTCAudioTrack *)audioTrackWithTrackId:(NSString *)trackId; |
38 | 43 |
39 /** Initialize an RTCVideoTrack with a source and an id. */ | 44 /** Initialize an RTCVideoTrack with a source and an id. */ |
40 - (RTCVideoTrack *)videoTrackWithSource:(RTCVideoSource *)source | 45 - (RTCVideoTrack *)videoTrackWithSource:(RTCVideoSource *)source |
41 trackId:(NSString *)trackId; | 46 trackId:(NSString *)trackId; |
42 | 47 |
43 /** Initialize an RTCMediaStream with an id. */ | 48 /** Initialize an RTCMediaStream with an id. */ |
44 - (RTCMediaStream *)mediaStreamWithStreamId:(NSString *)streamId; | 49 - (RTCMediaStream *)mediaStreamWithStreamId:(NSString *)streamId; |
45 | 50 |
46 /** Initialize an RTCPeerConnection with a configuration, constraints, and | 51 /** Initialize an RTCPeerConnection with a configuration, constraints, and |
47 * delegate. | 52 * delegate. |
48 */ | 53 */ |
49 - (RTCPeerConnection *)peerConnectionWithConfiguration: | 54 - (RTCPeerConnection *)peerConnectionWithConfiguration: |
50 (RTCConfiguration *)configuration | 55 (RTCConfiguration *)configuration |
51 constraints: | 56 constraints: |
52 (RTCMediaConstraints *)constraints | 57 (RTCMediaConstraints *)constraints |
53 delegate: | 58 delegate: |
54 (nullable id<RTCPeerConnectionDelegate>)delegate; | 59 (nullable id<RTCPeerConnectionDelegate>)delegate; |
55 | 60 |
56 @end | 61 @end |
57 | 62 |
58 NS_ASSUME_NONNULL_END | 63 NS_ASSUME_NONNULL_END |
OLD | NEW |