12345678910111213141516171819202122232425262728 |
- #import <AVFoundation/AVFoundation.h>
- #import "RTCYUVPlanarBuffer.h"
- NS_ASSUME_NONNULL_BEGIN
- RTC_OBJC_EXPORT
- @protocol RTC_OBJC_TYPE
- (RTCMutableYUVPlanarBuffer)<RTC_OBJC_TYPE(RTCYUVPlanarBuffer)>
- @property(nonatomic, readonly) uint8_t *mutableDataY;
- @property(nonatomic, readonly) uint8_t *mutableDataU;
- @property(nonatomic, readonly) uint8_t *mutableDataV;
- @end
- NS_ASSUME_NONNULL_END
|