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. |