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

Unified Diff: talk/session/media/channelmanager.cc

Issue 1415733005: Added StopAecDump function to PeerConnectionFactory. (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
« talk/media/base/mediaengine.h ('K') | « talk/session/media/channelmanager.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/session/media/channelmanager.cc
diff --git a/talk/session/media/channelmanager.cc b/talk/session/media/channelmanager.cc
index 5caf3c4b575e4e03978ee1ab10f4530f638bdf0d..e7e1cd44a22dd61aa8cacd7d44ed64285dc6c1b7 100644
--- a/talk/session/media/channelmanager.cc
+++ b/talk/session/media/channelmanager.cc
@@ -630,6 +630,11 @@ bool ChannelManager::StartAecDump(rtc::PlatformFile file) {
Bind(&MediaEngineInterface::StartAecDump, media_engine_.get(), file));
}
+void ChannelManager::StopAecDump() {
+ worker_thread_->Invoke<void>(
+ Bind(&MediaEngineInterface::StopAecDump, media_engine_.get()));
+}
+
bool ChannelManager::StartRtcEventLog(rtc::PlatformFile file) {
return worker_thread_->Invoke<bool>(
Bind(&MediaEngineInterface::StartRtcEventLog, media_engine_.get(), file));
« talk/media/base/mediaengine.h ('K') | « talk/session/media/channelmanager.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698