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

Unified Diff: talk/media/webrtc/webrtcvoiceengine.h

Issue 1413483003: Added option to specify a maximum file size when recording an AEC dump. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Initial version Created 5 years, 2 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: talk/media/webrtc/webrtcvoiceengine.h
diff --git a/talk/media/webrtc/webrtcvoiceengine.h b/talk/media/webrtc/webrtcvoiceengine.h
index a70840565b433c6188152eecd41719d416ee2cf2..eeb12c2954d8acd899c8ce0feac2f870eebc5db8 100644
--- a/talk/media/webrtc/webrtcvoiceengine.h
+++ b/talk/media/webrtc/webrtcvoiceengine.h
@@ -108,6 +108,9 @@ class WebRtcVoiceEngine
// Starts AEC dump using existing file.
bool StartAecDump(rtc::PlatformFile file);
+ // Same as above, but using a specified maximum file size in bytes.
+ bool StartAecDump(rtc::PlatformFile file, int max_size_bytes);
+
// Starts recording an RtcEventLog using an existing file until 10 minutes
// pass or the StopRtcEventLog function is called.
bool StartRtcEventLog(rtc::PlatformFile file);

Powered by Google App Engine
This is Rietveld 408576698