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

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

Issue 2622263002: Delete deprecated and transitional stuff related to video frame refactoring. (Closed)
Patch Set: Fix include order. Add dependency in api/video_codecs/BUILD.gn. Created 3 years, 7 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/BUILD.gn ('k') | webrtc/media/base/videoframe.h » ('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 // TODO(nisse): Transition hack, some downstream applications expect that
24 // including this file declares I420Buffer and NativeHandleBuffer. Delete after
25 // users of these classes are fixed to include the right headers.
26 #include "webrtc/api/video/i420_buffer.h"
27 #include "webrtc/common_video/include/video_frame_buffer.h"
28
29 #include "webrtc/base/constructormagic.h" 23 #include "webrtc/base/constructormagic.h"
30 #include "webrtc/base/criticalsection.h" 24 #include "webrtc/base/criticalsection.h"
31 #include "webrtc/media/base/videosourceinterface.h" 25 #include "webrtc/media/base/videosourceinterface.h"
32 #include "webrtc/base/sigslot.h" 26 #include "webrtc/base/sigslot.h"
33 #include "webrtc/base/thread_checker.h" 27 #include "webrtc/base/thread_checker.h"
34 #include "webrtc/base/timestampaligner.h" 28 #include "webrtc/base/timestampaligner.h"
35 #include "webrtc/media/base/videoadapter.h" 29 #include "webrtc/media/base/videoadapter.h"
36 #include "webrtc/media/base/videobroadcaster.h" 30 #include "webrtc/media/base/videobroadcaster.h"
37 #include "webrtc/media/base/videocommon.h" 31 #include "webrtc/media/base/videocommon.h"
38 32
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 bool apply_rotation_; 280 bool apply_rotation_;
287 281
288 // State for the timestamp translation. 282 // State for the timestamp translation.
289 rtc::TimestampAligner timestamp_aligner_; 283 rtc::TimestampAligner timestamp_aligner_;
290 RTC_DISALLOW_COPY_AND_ASSIGN(VideoCapturer); 284 RTC_DISALLOW_COPY_AND_ASSIGN(VideoCapturer);
291 }; 285 };
292 286
293 } // namespace cricket 287 } // namespace cricket
294 288
295 #endif // WEBRTC_MEDIA_BASE_VIDEOCAPTURER_H_ 289 #endif // WEBRTC_MEDIA_BASE_VIDEOCAPTURER_H_
OLDNEW
« no previous file with comments | « webrtc/media/BUILD.gn ('k') | webrtc/media/base/videoframe.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698