12345678910111213141516171819202122232425262728 |
- #import <Foundation/Foundation.h>
- #import "RTCMacros.h"
- NS_ASSUME_NONNULL_BEGIN
- RTC_OBJC_EXPORT
- @interface RTC_OBJC_TYPE (RTCVideoEncoderQpThresholds) : NSObject
- - (instancetype)initWithThresholdsLow:(NSInteger)low high:(NSInteger)high;
- @property(nonatomic, readonly) NSInteger low;
- @property(nonatomic, readonly) NSInteger high;
- @end
- NS_ASSUME_NONNULL_END
|