Meeting SDK for iOS API Reference
Loading...
Searching...
No Matches
MobileRTCPreProcessRawData.h
Go to the documentation of this file.
1
6#import <Foundation/Foundation.h>
7
12@interface MobileRTCPreProcessRawData : NSObject
13
17@property (nonatomic, assign) CGSize size;
18
22@property (nonatomic, assign) int yStride;
23
27@property (nonatomic, assign) int uStride;
28
32@property (nonatomic, assign) int vStride;
33
38- (char *)getYBuffer:(int)lineNum;
39
44- (char *)getUBuffer:(int)lineNum;
45
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.