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

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

Issue 2969623003: Update includes for webrtc/{base => rtc_base} rename (2/3) (Closed)
Patch Set: Rebased onto 224e65939af87443addfc5bb500fbf434728bd1c and restored sorting in clock.cc Created 3 years, 5 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/media/base/videobroadcaster_unittest.cc ('k') | webrtc/media/base/videocapturer.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) 2010 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2010 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
11 // Declaration of abstract class VideoCapturer 11 // Declaration of abstract class VideoCapturer
12 12
13 #ifndef WEBRTC_MEDIA_BASE_VIDEOCAPTURER_H_ 13 #ifndef WEBRTC_MEDIA_BASE_VIDEOCAPTURER_H_
14 #define WEBRTC_MEDIA_BASE_VIDEOCAPTURER_H_ 14 #define WEBRTC_MEDIA_BASE_VIDEOCAPTURER_H_
15 15
16 #include <stdint.h> 16 #include <stdint.h>
17 17
18 #include <algorithm> 18 #include <algorithm>
19 #include <memory> 19 #include <memory>
20 #include <string> 20 #include <string>
21 #include <vector> 21 #include <vector>
22 22
23 #include "webrtc/base/constructormagic.h"
24 #include "webrtc/base/criticalsection.h"
25 #include "webrtc/media/base/videosourceinterface.h"
26 #include "webrtc/base/sigslot.h"
27 #include "webrtc/base/thread_checker.h"
28 #include "webrtc/base/timestampaligner.h"
29 #include "webrtc/media/base/videoadapter.h" 23 #include "webrtc/media/base/videoadapter.h"
30 #include "webrtc/media/base/videobroadcaster.h" 24 #include "webrtc/media/base/videobroadcaster.h"
31 #include "webrtc/media/base/videocommon.h" 25 #include "webrtc/media/base/videocommon.h"
26 #include "webrtc/media/base/videosourceinterface.h"
27 #include "webrtc/rtc_base/constructormagic.h"
28 #include "webrtc/rtc_base/criticalsection.h"
29 #include "webrtc/rtc_base/sigslot.h"
30 #include "webrtc/rtc_base/thread_checker.h"
31 #include "webrtc/rtc_base/timestampaligner.h"
32 32
33 namespace webrtc { 33 namespace webrtc {
34 class VideoFrame; 34 class VideoFrame;
35 } 35 }
36 36
37 namespace cricket { 37 namespace cricket {
38 38
39 // Current state of the capturer. 39 // Current state of the capturer.
40 enum CaptureState { 40 enum CaptureState {
41 CS_STOPPED, // The capturer has been stopped or hasn't started yet. 41 CS_STOPPED, // The capturer has been stopped or hasn't started yet.
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 bool apply_rotation_; 280 bool apply_rotation_;
281 281
282 // State for the timestamp translation. 282 // State for the timestamp translation.
283 rtc::TimestampAligner timestamp_aligner_; 283 rtc::TimestampAligner timestamp_aligner_;
284 RTC_DISALLOW_COPY_AND_ASSIGN(VideoCapturer); 284 RTC_DISALLOW_COPY_AND_ASSIGN(VideoCapturer);
285 }; 285 };
286 286
287 } // namespace cricket 287 } // namespace cricket
288 288
289 #endif // WEBRTC_MEDIA_BASE_VIDEOCAPTURER_H_ 289 #endif // WEBRTC_MEDIA_BASE_VIDEOCAPTURER_H_
OLDNEW
« no previous file with comments | « webrtc/media/base/videobroadcaster_unittest.cc ('k') | webrtc/media/base/videocapturer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698