123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #import <Foundation/Foundation.h>
- #import <WebRTC/RTCMacros.h>
- @class RTC_OBJC_TYPE(RTCFileVideoCapturer);
- NS_CLASS_AVAILABLE_IOS(10)
- @interface ARDFileCaptureController : NSObject
- - (instancetype)initWithCapturer:(RTC_OBJC_TYPE(RTCFileVideoCapturer) *)capturer;
- - (void)startCapture;
- - (void)stopCapture;
- @end
|