Index: talk/media/base/capturemanager.h |
diff --git a/talk/media/base/capturemanager.h b/talk/media/base/capturemanager.h |
index 680300d51eda9d162d893d0bfa3f0ea948ecea69..8cbbf5258c4dbe57744c1d1a4450dcf48197dabe 100644 |
--- a/talk/media/base/capturemanager.h |
+++ b/talk/media/base/capturemanager.h |
@@ -32,9 +32,7 @@ |
// The class employs reference counting on starting and stopping of capturing of |
// frames such that if anyone is still listening it will not be stopped. The |
// class also provides APIs for attaching VideoRenderers to a specific capturer |
-// such that the VideoRenderers are fed frames directly from the capturer. In |
-// addition, these frames can be altered before being sent to the capturers by |
-// way of VideoProcessors. |
+// such that the VideoRenderers are fed frames directly from the capturer. |
// CaptureManager is Thread-unsafe. This means that none of its APIs may be |
// called concurrently. Note that callbacks are called by the VideoCapturer's |
// thread which is normally a separate unmarshalled thread and thus normally |
@@ -54,7 +52,6 @@ |
namespace cricket { |
class VideoCapturer; |
-class VideoProcessor; |
class VideoRenderer; |
class VideoCapturerState; |
@@ -87,11 +84,6 @@ class CaptureManager : public sigslot::has_slots<> { |
virtual bool RemoveVideoRenderer(VideoCapturer* video_capturer, |
VideoRenderer* video_renderer); |
- virtual bool AddVideoProcessor(VideoCapturer* video_capturer, |
- VideoProcessor* video_processor); |
- virtual bool RemoveVideoProcessor(VideoCapturer* video_capturer, |
- VideoProcessor* video_processor); |
- |
sigslot::repeater2<VideoCapturer*, CaptureState> SignalCapturerStateChange; |
private: |