Imobilis
Imobilis

Reputation: 1489

[[Soundlib3]] Sound Library and delphi - How do add reverb (signal processing in soundlib3)

How do I use Soundlib3 in Delphi to apply reverberation to the sound output ?

Upvotes: 0

Views: 326

Answers (1)

J...
J...

Reputation: 31393

You cannot; SoundLib3 currently does not support reverberation or echo. A cursory read of the documentation reveals :

procedure setEnvironmentType(entype : longword);

This function is currently NOT supported. It will set the type of environment. According to this, reflections, echoes and hall effects can be calculated.

See also

procedure setEnvironmentSize(size : tSVector);

This function is currently NOT supported. It will set the size of the environment. All values are in metres. According to this, reflections, echoes and hall effects can be calculated.

Upvotes: 2

Related Questions