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

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

Issue 2517173004: Move VideoFrame and related declarations to webrtc/api/video. (Closed)
Patch Set: Make rotation check clearer. Created 3 years, 11 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/videocapturer.cc ('k') | webrtc/media/base/videosourcebase.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) 2004 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2004 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 // TODO(nisse): Deprecated, replace cricket::VideoFrame with 11 // TODO(nisse): Deprecated, replace cricket::VideoFrame with
12 // webrtc::VideoFrame everywhere, then delete this file. See 12 // webrtc::VideoFrame everywhere, then delete this file. See
13 // https://bugs.chromium.org/p/webrtc/issues/detail?id=5682. 13 // https://bugs.chromium.org/p/webrtc/issues/detail?id=5682.
14 14
15 #ifndef WEBRTC_MEDIA_BASE_VIDEOFRAME_H_ 15 #ifndef WEBRTC_MEDIA_BASE_VIDEOFRAME_H_
16 #define WEBRTC_MEDIA_BASE_VIDEOFRAME_H_ 16 #define WEBRTC_MEDIA_BASE_VIDEOFRAME_H_
17 17
18 // TODO(nisse): Some applications expect that including this file 18 // TODO(nisse): Some applications expect that including this file
19 // implies an include of logging.h. So keep for compatibility, until 19 // implies an include of logging.h. So keep for compatibility, until
20 // this file can be deleted. 20 // this file can be deleted.
21 #include "webrtc/base/logging.h" 21 #include "webrtc/base/logging.h"
22 22
23 #include "webrtc/video_frame.h" 23 #include "webrtc/api/video/video_frame.h"
24 24
25 // TODO(nisse): Similarly, some applications expect that including this file 25 // TODO(nisse): Similarly, some applications expect that including this file
26 // implies a forward declaration of rtc::Thread. 26 // implies a forward declaration of rtc::Thread.
27 namespace rtc { 27 namespace rtc {
28 class Thread; 28 class Thread;
29 } // namespace rtc 29 } // namespace rtc
30 30
31 namespace cricket { 31 namespace cricket {
32 32
33 using VideoFrame = webrtc::VideoFrame; 33 using VideoFrame = webrtc::VideoFrame;
34 34
35 } // namespace cricket 35 } // namespace cricket
36 36
37 #endif // WEBRTC_MEDIA_BASE_VIDEOFRAME_H_ 37 #endif // WEBRTC_MEDIA_BASE_VIDEOFRAME_H_
OLDNEW
« no previous file with comments | « webrtc/media/base/videocapturer.cc ('k') | webrtc/media/base/videosourcebase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698