I have used the below code to add reverb effect to exoplayer. I Don't think the effect is being applied, Can anyone help me get the audio filters applied to the video/audio played
val reverb = PresetReverb(1, 0)
reverb.preset = PresetReverb.PRESET_LARGEHALL
reverb.enabled = true
simplePlayer?.setAuxEffectInfo(AuxEffectInfo(reverb.id, 1.0f))
simplePlayer?.prepare(mediaSource, true, true)
simplePlayer?.repeatMode = Player.REPEAT_MODE_OFF
simplePlayer?.playWhenReady = true