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

Side by Side Diff: webrtc/sdk/objc/Framework/Classes/Video/RTCCVPixelBuffer.mm

Issue 2975613002: Adjust for initial cropping when adapting frame. (Closed)
Patch Set: Rebase Created 3 years, 3 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 | « no previous file | webrtc/sdk/objc/Framework/Classes/Video/objcvideotracksource.mm » ('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 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/common_video/libyuv/include/webrtc_libyuv.h" 13 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
14 #include "webrtc/rtc_base/checks.h" 14 #include "webrtc/rtc_base/checks.h"
15 #include "webrtc/rtc_base/logging.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;
25 int _cropY;
26 } 24 }
27 25
28 @synthesize pixelBuffer = _pixelBuffer; 26 @synthesize pixelBuffer = _pixelBuffer;
27 @synthesize cropX = _cropX;
28 @synthesize cropY = _cropY;
29 29
30 - (instancetype)initWithPixelBuffer:(CVPixelBufferRef)pixelBuffer { 30 - (instancetype)initWithPixelBuffer:(CVPixelBufferRef)pixelBuffer {
31 return [self initWithPixelBuffer:pixelBuffer 31 return [self initWithPixelBuffer:pixelBuffer
32 adaptedWidth:CVPixelBufferGetWidth(pixelBuffer) 32 adaptedWidth:CVPixelBufferGetWidth(pixelBuffer)
33 adaptedHeight:CVPixelBufferGetHeight(pixelBuffer) 33 adaptedHeight:CVPixelBufferGetHeight(pixelBuffer)
34 cropWidth:CVPixelBufferGetWidth(pixelBuffer) 34 cropWidth:CVPixelBufferGetWidth(pixelBuffer)
35 cropHeight:CVPixelBufferGetHeight(pixelBuffer) 35 cropHeight:CVPixelBufferGetHeight(pixelBuffer)
36 cropX:0 36 cropX:0
37 cropY:0]; 37 cropY:0];
38 } 38 }
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « no previous file | webrtc/sdk/objc/Framework/Classes/Video/objcvideotracksource.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698