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

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

Issue 1361633002: Remove the [Un]RegisterVoiceProcessor() API. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 5 years, 3 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 | « talk/session/media/channelmanager.h ('k') | talk/session/media/channelmanager_unittest.cc » ('j') | 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 8667e597a0b11030acc193bdf0fd233aead7b5b6..928554360b85da78ff2645bb8e6b01d186bf8a26 100644
--- a/talk/session/media/channelmanager.cc
+++ b/talk/session/media/channelmanager.cc
@@ -744,24 +744,6 @@ void ChannelManager::GetSupportedFormats_w(
*out_formats = *formats;
}
-bool ChannelManager::RegisterVoiceProcessor(
- uint32 ssrc,
- VoiceProcessor* processor,
- MediaProcessorDirection direction) {
- return initialized_ && worker_thread_->Invoke<bool>(
- Bind(&MediaEngineInterface::RegisterVoiceProcessor, media_engine_.get(),
- ssrc, processor, direction));
-}
-
-bool ChannelManager::UnregisterVoiceProcessor(
- uint32 ssrc,
- VoiceProcessor* processor,
- MediaProcessorDirection direction) {
- return initialized_ && worker_thread_->Invoke<bool>(
- Bind(&MediaEngineInterface::UnregisterVoiceProcessor,
- media_engine_.get(), ssrc, processor, direction));
-}
-
// The following are done in the new "CaptureManager" style that
// all local video capturers, processors, and managers should move
// to.
« no previous file with comments | « talk/session/media/channelmanager.h ('k') | talk/session/media/channelmanager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698