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

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

Issue 1296113002: Remove cricket::VideoProcessor and AddVideoProcessor() functionality (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 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 | « talk/media/base/videoprocessor.h ('k') | talk/session/media/channelmanager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/session/media/channelmanager.h
diff --git a/talk/session/media/channelmanager.h b/talk/session/media/channelmanager.h
index 898ae1cb2db48e0099c144f94b9b98c82be6ac00..81cb3eed61e591e3d8c0b3bc9ac457d8125f496d 100644
--- a/talk/session/media/channelmanager.h
+++ b/talk/session/media/channelmanager.h
@@ -44,7 +44,6 @@ namespace cricket {
const int kDefaultAudioDelayOffset = 0;
-class VideoProcessor;
class VoiceChannel;
class VoiceProcessor;
@@ -175,14 +174,7 @@ class ChannelManager : public rtc::MessageHandler,
// Gets capturer's supported formats in a thread safe manner
std::vector<cricket::VideoFormat> GetSupportedFormats(
VideoCapturer* capturer) const;
- // The channel manager handles the Tx side for Video processing,
- // as well as Tx and Rx side for Voice processing.
- // (The Rx Video processing will go throug the simplerenderingmanager,
- // to be implemented).
- bool RegisterVideoProcessor(VideoCapturer* capturer,
- VideoProcessor* processor);
- bool UnregisterVideoProcessor(VideoCapturer* capturer,
- VideoProcessor* processor);
+ // The channel manager handles the Tx and Rx side for Voice processing.
bool RegisterVoiceProcessor(uint32 ssrc,
VoiceProcessor* processor,
MediaProcessorDirection direction);
@@ -279,10 +271,6 @@ class ChannelManager : public rtc::MessageHandler,
void GetSupportedFormats_w(
VideoCapturer* capturer,
std::vector<cricket::VideoFormat>* out_formats) const;
- bool RegisterVideoProcessor_w(VideoCapturer* capturer,
- VideoProcessor* processor);
- bool UnregisterVideoProcessor_w(VideoCapturer* capturer,
- VideoProcessor* processor);
bool IsScreencastRunning_w() const;
virtual void OnMessage(rtc::Message *message);
« no previous file with comments | « talk/media/base/videoprocessor.h ('k') | talk/session/media/channelmanager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698