12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #import "RTCVideoSource.h"
- #import "RTCMediaSource+Private.h"
- #include "api/media_stream_interface.h"
- #include "rtc_base/thread.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RTC_OBJC_TYPE (RTCVideoSource)
- ()
-
- @property(nonatomic,
- readonly) rtc::scoped_refptr<webrtc::VideoTrackSourceInterface> nativeVideoSource;
- - (instancetype)initWithFactory:(RTC_OBJC_TYPE(RTCPeerConnectionFactory) *)factory
- nativeVideoSource:
- (rtc::scoped_refptr<webrtc::VideoTrackSourceInterface>)nativeVideoSource
- NS_DESIGNATED_INITIALIZER;
- - (instancetype)initWithFactory:(RTC_OBJC_TYPE(RTCPeerConnectionFactory) *)factory
- nativeMediaSource:(rtc::scoped_refptr<webrtc::MediaSourceInterface>)nativeMediaSource
- type:(RTCMediaSourceType)type NS_UNAVAILABLE;
- - (instancetype)initWithFactory:(RTC_OBJC_TYPE(RTCPeerConnectionFactory) *)factory
- signalingThread:(rtc::Thread *)signalingThread
- workerThread:(rtc::Thread *)workerThread;
- @end
- NS_ASSUME_NONNULL_END
|