1234567891011121314151617181920212223242526272829303132 |
- #import <Foundation/Foundation.h>
- #import "RTCMacros.h"
- #import "RTCVideoCodecInfo.h"
- #import "RTCVideoDecoder.h"
- NS_ASSUME_NONNULL_BEGIN
- RTC_OBJC_EXPORT
- @protocol RTC_OBJC_TYPE
- (RTCVideoDecoderFactory)<NSObject>
- - (nullable id<RTC_OBJC_TYPE(RTCVideoDecoder)>)createDecoder
- : (RTC_OBJC_TYPE(RTCVideoCodecInfo) *)info;
- - (NSArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *)
- supportedCodecs;
- @end
- NS_ASSUME_NONNULL_END
|