Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

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

Issue 2556553002: Expose audio_jitter_buffer_fast_accelerate config to objc wrapper (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 /** The media-bundling policy to use when gathering ICE candidates. */ 77 /** The media-bundling policy to use when gathering ICE candidates. */
78 @property(nonatomic, assign) RTCBundlePolicy bundlePolicy; 78 @property(nonatomic, assign) RTCBundlePolicy bundlePolicy;
79 79
80 /** The rtcp-mux policy to use when gathering ICE candidates. */ 80 /** The rtcp-mux policy to use when gathering ICE candidates. */
81 @property(nonatomic, assign) RTCRtcpMuxPolicy rtcpMuxPolicy; 81 @property(nonatomic, assign) RTCRtcpMuxPolicy rtcpMuxPolicy;
82 @property(nonatomic, assign) RTCTcpCandidatePolicy tcpCandidatePolicy; 82 @property(nonatomic, assign) RTCTcpCandidatePolicy tcpCandidatePolicy;
83 @property(nonatomic, assign) RTCCandidateNetworkPolicy candidateNetworkPolicy; 83 @property(nonatomic, assign) RTCCandidateNetworkPolicy candidateNetworkPolicy;
84 @property(nonatomic, assign) 84 @property(nonatomic, assign)
85 RTCContinualGatheringPolicy continualGatheringPolicy; 85 RTCContinualGatheringPolicy continualGatheringPolicy;
86 @property(nonatomic, assign) int audioJitterBufferMaxPackets; 86 @property(nonatomic, assign) int audioJitterBufferMaxPackets;
87 @property(nonatomic, assign) BOOL audioJitterBufferFastAccelerate;
87 @property(nonatomic, assign) int iceConnectionReceivingTimeout; 88 @property(nonatomic, assign) int iceConnectionReceivingTimeout;
88 @property(nonatomic, assign) int iceBackupCandidatePairPingInterval; 89 @property(nonatomic, assign) int iceBackupCandidatePairPingInterval;
89 90
90 /** Key type used to generate SSL identity. Default is ECDSA. */ 91 /** Key type used to generate SSL identity. Default is ECDSA. */
91 @property(nonatomic, assign) RTCEncryptionKeyType keyType; 92 @property(nonatomic, assign) RTCEncryptionKeyType keyType;
92 93
93 /** ICE candidate pool size as defined in JSEP. Default is 0. */ 94 /** ICE candidate pool size as defined in JSEP. Default is 0. */
94 @property(nonatomic, assign) int iceCandidatePoolSize; 95 @property(nonatomic, assign) int iceCandidatePoolSize;
95 96
96 /** Prune turn ports on the same network to the same turn server. 97 /** Prune turn ports on the same network to the same turn server.
97 * Default is NO. 98 * Default is NO.
98 */ 99 */
99 @property(nonatomic, assign) BOOL shouldPruneTurnPorts; 100 @property(nonatomic, assign) BOOL shouldPruneTurnPorts;
100 101
101 /** If set to YES, this means the ICE transport should presume TURN-to-TURN 102 /** If set to YES, this means the ICE transport should presume TURN-to-TURN
102 * candidate pairs will succeed, even before a binding response is received. 103 * candidate pairs will succeed, even before a binding response is received.
103 */ 104 */
104 @property(nonatomic, assign) BOOL shouldPresumeWritableWhenFullyRelayed; 105 @property(nonatomic, assign) BOOL shouldPresumeWritableWhenFullyRelayed;
105 106
106 - (instancetype)init NS_DESIGNATED_INITIALIZER; 107 - (instancetype)init NS_DESIGNATED_INITIALIZER;
107 108
108 @end 109 @end
109 110
110 NS_ASSUME_NONNULL_END 111 NS_ASSUME_NONNULL_END
OLDNEW
« no previous file with comments | « webrtc/sdk/objc/Framework/Classes/RTCConfiguration.mm ('k') | webrtc/sdk/objc/Framework/UnitTests/RTCConfigurationTest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698