Package im.zego.zegoexpress.entity
Class ZegoReverbEchoParam
- java.lang.Object
-
- im.zego.zegoexpress.entity.ZegoReverbEchoParam
-
public class ZegoReverbEchoParam extends java.lang.Object
Audio reverberation echo parameters.
-
-
Field Summary
Fields Modifier and Type Field Description float[]
decay
Respective decay coefficient of echo signal, in the range [0.0, 1.0]int[]
delay
Respective delay of echo signal, in milliseconds, in the range [0, 5000] msfloat
inGain
Gain of input audio signal, in the range [0.0, 1.0]int
numDelays
Number of echos, in the range [0, 7]float
outGain
Gain of output audio signal, in the range [0.0, 1.0]
-
Constructor Summary
Constructors Constructor Description ZegoReverbEchoParam()
-
-
-
Field Detail
-
inGain
public float inGain
Gain of input audio signal, in the range [0.0, 1.0]
-
outGain
public float outGain
Gain of output audio signal, in the range [0.0, 1.0]
-
numDelays
public int numDelays
Number of echos, in the range [0, 7]
-
delay
public int[] delay
Respective delay of echo signal, in milliseconds, in the range [0, 5000] ms
-
decay
public float[] decay
Respective decay coefficient of echo signal, in the range [0.0, 1.0]
-
-