OTVideoFrame Class Reference
Inherits from | NSObject |
---|---|
Declared in | OTVideoKit.h |
Overview
Defines a frame of a video. See [OTVideoRender renderVideoFrame:] and [OTVideoCaptureConsumer consumeFrame:].
Properties of OTVideoFrame objects
planes
An array of planes in the video frame.
@property (nonatomic, retain) NSPointerArray *planes
Declared In
OTVideoKit.h
timestamp
A timestap of the video frame.
@property (nonatomic, assign) CMTime timestamp
Declared In
OTVideoKit.h
orientation
The orientation of the video frame.
@property (nonatomic, assign) OTVideoOrientation orientation
Declared In
OTVideoKit.h
format
The format of the video frame.
@property (nonatomic, retain) OTVideoFormat *format
Declared In
OTVideoKit.h
Instantiating OTVideoFrame objects
– initWithFormat:
Initializes an OTVideoFrame object with a specified format.
- (id)initWithFormat:(OTVideoFormat *)videoFormat
Parameters
videoFormat |
The video format used by the video frame. |
---|
Declared In
OTVideoKit.h
– setPlanesWithPointers:numPlanes:
Sets planes for the video frame.
- (void)setPlanesWithPointers:(uint8_t *[ ])planes numPlanes:(int)numPlanes
Parameters
planes |
The planes to assign. |
---|---|
numPlanes |
The number of planes to assign. |
Declared In
OTVideoKit.h