| | |
| | | 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 */ |
| | |
| | | |
| | | @property (nonatomic) DEFINITION_MODE defiMode; /** 流媒体HD/SD模式 */ |
| | | @property (nonatomic) BOOL isOpt; /** 是否使用长链接优化 */ |
| | | /// 码流分辨率 |
| | | @property (nonatomic , assign) NSInteger imageSize; |
| | | |
| | | @end |
| | | |
| | |
| | | |
| | | @property (nonatomic) BOOL isOpt; /** 是否使用长链接优化 */ |
| | | |
| | | /// 请求类型,talk对讲,call呼叫,如果不传,默认为talk |
| | | @property (nonatomic, copy) NSString *talkType; |
| | | |
| | | @end |
| | | |
| | | NS_ASSUME_NONNULL_END |