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

Unified Diff: talk/media/base/capturemanager.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/libjingle.gyp ('k') | talk/media/base/capturemanager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:
« no previous file with comments | « talk/libjingle.gyp ('k') | talk/media/base/capturemanager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698