12345678910111213141516171819202122232425262728293031323334353637 |
- #import <Foundation/Foundation.h>
- #import "RTCMacros.h"
- #import "RTCMediaSource.h"
- #import "RTCVideoCapturer.h"
- NS_ASSUME_NONNULL_BEGIN
- RTC_OBJC_EXPORT
- @interface RTC_OBJC_TYPE (RTCVideoSource) : RTC_OBJC_TYPE(RTCMediaSource) <RTC_OBJC_TYPE(RTCVideoCapturerDelegate)>
- - (instancetype)init NS_UNAVAILABLE;
- - (void)adaptOutputFormatToWidth:(int)width height:(int)height fps:(int)fps;
- @end
- NS_ASSUME_NONNULL_END
|