Meeting SDK for iOS API Reference
Loading...
Searching...
No Matches
MobileRTCPreProcessRawData.h
Go to the documentation of this file.
1//
2// MobileRTCPreProcessRawData.h
3// MobileRTC
4//
5// Created by Zoom Communications on 2020/2/26.
6// Copyright © Zoom Communications, Inc. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
15@interface MobileRTCPreProcessRawData : NSObject
16
20@property (nonatomic, assign) CGSize size;
21
25@property (nonatomic, assign) int yStride;
26
30@property (nonatomic, assign) int uStride;
31
35@property (nonatomic, assign) int vStride;
36
40- (char *)getYBuffer:(int)lineNum;
41
45- (char *)getUBuffer:(int)lineNum;
46
50- (char *)getVBuffer:(int)lineNum;
51
55@property (nonatomic, assign) MobileRTCFrameDataFormat format;
56
60@property (nonatomic, assign) MobileRTCVideoRawDataRotation rotation;
61
62@end
63
MobileRTCFrameDataFormat
Enumeration of video frame data format.
MobileRTCVideoRawDataRotation
Enumeration of directions of video.
int vStride
V data pointer of video's YUV data stride.
MobileRTCFrameDataFormat format
The raw data format of video data.
CGSize size
The size of video data.
int uStride
U data pointer of video's YUV data stride.
MobileRTCVideoRawDataRotation rotation
The direction of video data.
int yStride
Y data pointer of video's YUV data stride.