15 lines
361 B
Objective-C
15 lines
361 B
Objective-C
#ifndef TGRTCCVPIXELBUFFER_H
|
|
#define TGRTCCVPIXELBUFFER_H
|
|
|
|
#import "components/video_frame_buffer/RTCCVPixelBuffer.h"
|
|
|
|
@interface TGRTCCVPixelBuffer : RTCCVPixelBuffer
|
|
|
|
@property (nonatomic) bool shouldBeMirrored;
|
|
@property (nonatomic) int deviceRelativeVideoRotation;
|
|
|
|
- (void)storeSampleBufferReference:(CMSampleBufferRef _Nonnull)sampleBuffer;
|
|
|
|
@end
|
|
|
|
#endif
|