setAttenuationModel abstract method
设置范围语音的音量衰减模式
type
音量衰减模式,默认为线性衰减。
coefficient
指数衰减模式下的音量衰减系数,默认值为 1。
范围 [0.1,100]
,推荐设置为 50
。
数值越大,音量的衰减速度越快。
返回值:方法调用结果
0
:成功;-1
:失败,原因是在调用 RTCRangeAudio.enableRangeAudio 开启范围语音前或进房前调用了本接口。
注意:音量衰减范围通过 RTCRangeAudio.updateReceiveRange 进行设置。
Implementation
Future<int?> setAttenuationModel({
required AttenuationType type,
required double coefficient,
});