2017-07-25 09:35:55 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright 2017 The WebRTC project authors. All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#import <AVFoundation/AVFoundation.h>
|
2018-08-30 09:30:29 +02:00
|
|
|
|
|
|
|
|
#import "RTCMacros.h"
|
2017-07-25 09:35:55 -07:00
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
2020-05-04 16:14:32 +02:00
|
|
|
@protocol RTC_OBJC_TYPE
|
|
|
|
|
(RTCI420Buffer);
|
2018-08-30 09:30:29 +02:00
|
|
|
|
|
|
|
|
// RTCVideoFrameBuffer is an ObjectiveC version of webrtc::VideoFrameBuffer.
|
2018-09-17 10:22:56 +02:00
|
|
|
RTC_OBJC_EXPORT
|
2020-05-04 16:14:32 +02:00
|
|
|
@protocol RTC_OBJC_TYPE
|
|
|
|
|
(RTCVideoFrameBuffer)<NSObject>
|
2018-08-30 09:30:29 +02:00
|
|
|
|
2020-05-04 16:14:32 +02:00
|
|
|
@property(nonatomic, readonly) int width;
|
2018-08-30 09:30:29 +02:00
|
|
|
@property(nonatomic, readonly) int height;
|
2017-07-25 09:35:55 -07:00
|
|
|
|
2020-05-04 16:14:32 +02:00
|
|
|
- (id<RTC_OBJC_TYPE(RTCI420Buffer)>)toI420;
|
2017-07-25 09:35:55 -07:00
|
|
|
|
2022-08-24 01:49:29 +09:00
|
|
|
@optional
|
|
|
|
|
- (id<RTC_OBJC_TYPE(RTCVideoFrameBuffer)>)cropAndScaleWith:(int)offsetX
|
|
|
|
|
offsetY:(int)offsetY
|
|
|
|
|
cropWidth:(int)cropWidth
|
|
|
|
|
cropHeight:(int)cropHeight
|
|
|
|
|
scaleWidth:(int)scaleWidth
|
|
|
|
|
scaleHeight:(int)scaleHeight;
|
|
|
|
|
|
2017-07-25 09:35:55 -07:00
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|