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

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: Changes in response to reviewer comments 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
« no previous file with comments | « webrtc/sdk/objc/Framework/Classes/RTCPeerConnectionFactory.mm ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..abf2373f3c092e12c4435e11eb6602d530593967 100644
--- a/webrtc/sdk/objc/Framework/Headers/WebRTC/RTCPeerConnectionFactory.h
+++ b/webrtc/sdk/objc/Framework/Headers/WebRTC/RTCPeerConnectionFactory.h
@@ -53,6 +53,16 @@ RTC_EXPORT
delegate:
(nullable id<RTCPeerConnectionDelegate>)delegate;
+/** Start an aecdump recording with a file descriptor and
+ a specified maximum size limit (-1 specifies that no
+ limit should be used).
+ This API call will likely change in the future */
+- (BOOL)startAecDumpWithFileDescriptor:(int)fileDescriptor
+ maxFileSizeInBytes:(int)maxFileSizeInBytes;
+
+/* Stop an active aecdump recording */
+- (void)stopAecDump;
+
@end
NS_ASSUME_NONNULL_END
« no previous file with comments | « webrtc/sdk/objc/Framework/Classes/RTCPeerConnectionFactory.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698