OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2017 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2017 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 #import "WebRTC/RTCVideoFrameBuffer.h" | 11 #import "WebRTC/RTCVideoFrameBuffer.h" |
12 | 12 |
13 #include "webrtc/base/checks.h" | |
14 #include "webrtc/base/logging.h" | |
15 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" | 13 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" |
| 14 #include "webrtc/rtc_base/checks.h" |
| 15 #include "webrtc/rtc_base/logging.h" |
16 | 16 |
17 @implementation RTCCVPixelBuffer { | 17 @implementation RTCCVPixelBuffer { |
18 int _width; | 18 int _width; |
19 int _height; | 19 int _height; |
20 int _bufferWidth; | 20 int _bufferWidth; |
21 int _bufferHeight; | 21 int _bufferHeight; |
22 int _cropWidth; | 22 int _cropWidth; |
23 int _cropHeight; | 23 int _cropHeight; |
24 int _cropX; | 24 int _cropX; |
25 int _cropY; | 25 int _cropY; |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 i420Buffer.strideV, | 179 i420Buffer.strideV, |
180 i420Buffer.width, | 180 i420Buffer.width, |
181 i420Buffer.height); | 181 i420Buffer.height); |
182 | 182 |
183 CVPixelBufferUnlockBaseAddress(_pixelBuffer, kCVPixelBufferLock_ReadOnly); | 183 CVPixelBufferUnlockBaseAddress(_pixelBuffer, kCVPixelBufferLock_ReadOnly); |
184 | 184 |
185 return i420Buffer; | 185 return i420Buffer; |
186 } | 186 } |
187 | 187 |
188 @end | 188 @end |
OLD | NEW |