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

Side by Side Diff: webrtc/common_video/interface/video_frame_buffer.h

Issue 1418913006: common_video: rename interface -> include (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased Created 5 years, 1 month 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 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 #ifndef WEBRTC_VIDEO_FRAME_BUFFER_H_ 11 #ifndef WEBRTC_COMMON_VIDEO_INCLUDE_VIDEO_FRAME_BUFFER_H_
12 #define WEBRTC_VIDEO_FRAME_BUFFER_H_ 12 #define WEBRTC_COMMON_VIDEO_INCLUDE_VIDEO_FRAME_BUFFER_H_
13
14 #pragma message("WARNING: common_video/include is DEPRECATED; use common_video/i nclude")
Matt Giuca 2015/11/18 03:18:52 This is spamming the Chrome build logs. Please rem
kjellander_webrtc 2015/11/18 06:38:27 I don't consider one warning emitted during compil
13 15
14 #include "webrtc/base/callback.h" 16 #include "webrtc/base/callback.h"
15 #include "webrtc/base/refcount.h" 17 #include "webrtc/base/refcount.h"
16 #include "webrtc/base/scoped_ptr.h" 18 #include "webrtc/base/scoped_ptr.h"
17 #include "webrtc/base/scoped_ref_ptr.h" 19 #include "webrtc/base/scoped_ref_ptr.h"
18 #include "webrtc/system_wrappers/include/aligned_malloc.h" 20 #include "webrtc/system_wrappers/include/aligned_malloc.h"
19 21
20 namespace webrtc { 22 namespace webrtc {
21 23
22 enum PlaneType { 24 enum PlaneType {
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 149
148 // Helper function to crop |buffer| without making a deep copy. May only be used 150 // Helper function to crop |buffer| without making a deep copy. May only be used
149 // for non-native frames. 151 // for non-native frames.
150 rtc::scoped_refptr<VideoFrameBuffer> ShallowCenterCrop( 152 rtc::scoped_refptr<VideoFrameBuffer> ShallowCenterCrop(
151 const rtc::scoped_refptr<VideoFrameBuffer>& buffer, 153 const rtc::scoped_refptr<VideoFrameBuffer>& buffer,
152 int cropped_width, 154 int cropped_width,
153 int cropped_height); 155 int cropped_height);
154 156
155 } // namespace webrtc 157 } // namespace webrtc
156 158
157 #endif // WEBRTC_VIDEO_FRAME_BUFFER_H_ 159 #endif // WEBRTC_COMMON_VIDEO_INCLUDE_VIDEO_FRAME_BUFFER_H_
OLDNEW
« no previous file with comments | « webrtc/common_video/interface/incoming_video_stream.h ('k') | webrtc/common_video/interface/video_image.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698