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

Side by Side Diff: webrtc/media/base/capturemanager.h

Issue 1655793003: Make cricket::VideoCapturer implement VideoSourceInterface (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Added dummy capturerenderadapter.cc Created 4 years, 10 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 unified diff | Download patch
« no previous file with comments | « webrtc/api/remotevideocapturer_unittest.cc ('k') | webrtc/media/base/capturemanager.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 11 matching lines...) Expand all
22 // require lock protection. 22 // require lock protection.
23 23
24 #ifndef WEBRTC_MEDIA_BASE_CAPTUREMANAGER_H_ 24 #ifndef WEBRTC_MEDIA_BASE_CAPTUREMANAGER_H_
25 #define WEBRTC_MEDIA_BASE_CAPTUREMANAGER_H_ 25 #define WEBRTC_MEDIA_BASE_CAPTUREMANAGER_H_
26 26
27 #include <map> 27 #include <map>
28 #include <vector> 28 #include <vector>
29 29
30 #include "webrtc/base/sigslotrepeater.h" 30 #include "webrtc/base/sigslotrepeater.h"
31 #include "webrtc/base/thread_checker.h" 31 #include "webrtc/base/thread_checker.h"
32 #include "webrtc/media/base/capturerenderadapter.h"
33 #include "webrtc/media/base/videocommon.h" 32 #include "webrtc/media/base/videocommon.h"
33 #include "webrtc/media/base/videocapturer.h"
34 #include "webrtc/media/base/videosinkinterface.h"
34 35
35 namespace cricket { 36 namespace cricket {
36 37
37 class VideoCapturer; 38 class VideoFrame;
38 class VideoRenderer;
39 class VideoCapturerState; 39 class VideoCapturerState;
40 40
41 class CaptureManager : public sigslot::has_slots<> { 41 class CaptureManager : public sigslot::has_slots<> {
42 public: 42 public:
43 enum RestartOptions { 43 enum RestartOptions {
44 kRequestRestart, 44 kRequestRestart,
45 kForceRestart 45 kForceRestart
46 }; 46 };
47 47
48 CaptureManager(); 48 CaptureManager();
(...skipping 24 matching lines...) Expand all
73 typedef std::map<VideoCapturer*, VideoCapturerState*> CaptureStates; 73 typedef std::map<VideoCapturer*, VideoCapturerState*> CaptureStates;
74 74
75 bool IsCapturerRegistered(VideoCapturer* video_capturer) const; 75 bool IsCapturerRegistered(VideoCapturer* video_capturer) const;
76 bool RegisterVideoCapturer(VideoCapturer* video_capturer); 76 bool RegisterVideoCapturer(VideoCapturer* video_capturer);
77 void UnregisterVideoCapturer(VideoCapturerState* capture_state); 77 void UnregisterVideoCapturer(VideoCapturerState* capture_state);
78 78
79 bool StartWithBestCaptureFormat(VideoCapturerState* capture_info, 79 bool StartWithBestCaptureFormat(VideoCapturerState* capture_info,
80 VideoCapturer* video_capturer); 80 VideoCapturer* video_capturer);
81 81
82 VideoCapturerState* GetCaptureState(VideoCapturer* video_capturer) const; 82 VideoCapturerState* GetCaptureState(VideoCapturer* video_capturer) const;
83 CaptureRenderAdapter* GetAdapter(VideoCapturer* video_capturer) const;
84 83
85 rtc::ThreadChecker thread_checker_; 84 rtc::ThreadChecker thread_checker_;
86 CaptureStates capture_states_; 85 CaptureStates capture_states_;
87 }; 86 };
88 87
89 } // namespace cricket 88 } // namespace cricket
90 89
91 #endif // WEBRTC_MEDIA_BASE_CAPTUREMANAGER_H_ 90 #endif // WEBRTC_MEDIA_BASE_CAPTUREMANAGER_H_
OLDNEW
« no previous file with comments | « webrtc/api/remotevideocapturer_unittest.cc ('k') | webrtc/media/base/capturemanager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698