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

Unified Diff: webrtc/sdk/objc/Framework/Headers/WebRTC/RTCPeerConnectionFactory.h

Issue 2253013006: Adding AecDump functionality to AppRTCDemo for iOS (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fixed failing test Created 4 years, 4 months 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/sdk/objc/Framework/Headers/WebRTC/RTCPeerConnectionFactory.h
diff --git a/webrtc/sdk/objc/Framework/Headers/WebRTC/RTCPeerConnectionFactory.h b/webrtc/sdk/objc/Framework/Headers/WebRTC/RTCPeerConnectionFactory.h
index f21c107581e9048a2f92adb94315538110b25995..12ad977db8353c2de699d210f6f94fa4690a8de2 100644
--- a/webrtc/sdk/objc/Framework/Headers/WebRTC/RTCPeerConnectionFactory.h
+++ b/webrtc/sdk/objc/Framework/Headers/WebRTC/RTCPeerConnectionFactory.h
@@ -29,6 +29,14 @@ RTC_EXPORT
- (instancetype)init NS_DESIGNATED_INITIALIZER;
+/** Start an aecdump recording with a file descriptor and
tkchin_webrtc 2016/08/25 17:25:40 nit: place this after the rest of the methods.
peah-webrtc 2016/08/25 21:23:36 Done.
+ a specified maximum size limit (-1 specifies that no
+ limit should be used). */
+- (BOOL)startAecDumpWithFileDescriptor:(int)fileDescriptor
+ maxFileSizeInBytes:(int)maxFileSizeInBytes;
+
+- (void)stopAecDump;
+
/** Initialize an RTCAVFoundationVideoSource with constraints. */
- (RTCAVFoundationVideoSource *)avFoundationVideoSourceWithConstraints:
(nullable RTCMediaConstraints *)constraints;

Powered by Google App Engine
This is Rietveld 408576698