JLChen
2021-11-04 1443556e9ccb1a19ed8e6710c16c8adc4d4f4fb3
iOS/Xamarin/Shared.IOS.LCVideoOnSDK/Shared.IOS.LCVideoOnSDK/Library/LCOpenSDKDynamic.framework/Headers/LCOpenSDK/LCOpenSDK_Param.h
@@ -32,6 +32,24 @@
    RECORD_TYPE_TIMING = 2000
};
/**
 音频降噪等级
 LCOpenSDK_EnhanceMode_Close 关闭
 LCOpenSDK_EnhanceMode_Level1 降噪1级,最差
 LCOpenSDK_EnhanceMode_Level2 降噪2级
 LCOpenSDK_EnhanceMode_Level3 降噪3级
 LCOpenSDK_EnhanceMode_Level4 降噪4级
 LCOpenSDK_EnhanceMode_Level5 降噪5级,最优
*/
typedef NS_ENUM(NSInteger, LCOpenSDK_EnhanceMode) {
    LCOpenSDK_EnhanceMode_Close = -1,
    LCOpenSDK_EnhanceMode_Level1 = 0,
    LCOpenSDK_EnhanceMode_Level2 = 1,
    LCOpenSDK_EnhanceMode_Level3 = 2,
    LCOpenSDK_EnhanceMode_Level4 = 3,
    LCOpenSDK_EnhanceMode_Level5 = 4
};
@interface LCOpenSDK_Param : NSObject
@property (nonatomic, copy, nonnull) NSString  *accessToken; /** 管理员token/用户token */
@@ -49,6 +67,8 @@
@property (nonatomic) DEFINITION_MODE  defiMode; /** 流媒体HD/SD模式 */
@property (nonatomic) BOOL             isOpt; /** 是否使用长链接优化 */
/// 码流分辨率
@property (nonatomic , assign) NSInteger imageSize;
@end
@@ -94,6 +114,9 @@
@property (nonatomic) BOOL             isOpt; /** 是否使用长链接优化 */
/// 请求类型,talk对讲,call呼叫,如果不传,默认为talk
@property (nonatomic, copy) NSString *talkType;
@end
NS_ASSUME_NONNULL_END