Index: webrtc/examples/objc/AppRTCDemo/ios/ARDAppDelegate.m |
diff --git a/webrtc/examples/objc/AppRTCDemo/ios/ARDAppDelegate.m b/webrtc/examples/objc/AppRTCDemo/ios/ARDAppDelegate.m |
index d815008caee48037bf55168bff7899196af800f6..48d7404ddb86d2d4403940671650dd830d92ab49 100644 |
--- a/webrtc/examples/objc/AppRTCDemo/ios/ARDAppDelegate.m |
+++ b/webrtc/examples/objc/AppRTCDemo/ios/ARDAppDelegate.m |
@@ -10,6 +10,7 @@ |
#import "ARDAppDelegate.h" |
+#import "webrtc/base/objc/RTCFieldTrials.h" |
#import "webrtc/base/objc/RTCTracing.h" |
#import "RTCLogging.h" |
#import "RTCPeerConnectionFactory.h" |
@@ -25,6 +26,7 @@ |
- (BOOL)application:(UIApplication *)application |
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { |
[RTCPeerConnectionFactory initializeSSL]; |
+ RTCInitFieldTrials(RTCFieldTrialOptionsSendSideBwe); |
Chuck
2016/03/03 14:37:59
Just a question, the comment says this must be cal
tkchin_webrtc
2016/03/03 17:58:41
Yeah, that actually isn't a "WebRTC" method. It ju
|
RTCSetupInternalTracer(); |
_window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; |
[_window makeKeyAndVisible]; |