Class AudioEffectEQ
Base class for audio equalizers. Gives you control over frequencies.
Use it to create a custom equalizer if AudioEffectEQ6, AudioEffectEQ10 or AudioEffectEQ21 don't fit your needs.
- Inheritance
-
AudioEffectEQ
- Derived
Remarks
AudioEffectEQ gives you control over frequencies. Use it to compensate for existing deficiencies in audio. AudioEffectEQs are useful on the Master bus to completely master a mix and give it more character. They are also useful when a game is run on a mobile device, to adjust the mix to that kind of speakers (it can be added but disabled when headphones are plugged).
See Also
Methods
get_band_count
Qualifiers: const
Returns the number of bands of the equalizer.
int get_band_count
get_band_gain_db(int)
Qualifiers: const
Returns the band's gain at the specified index, in dB.
float get_band_gain_db(int band_idx)
Parameters
band_idx
int
set_band_gain_db(int, float)
Sets band's gain at the specified index, in dB.
void set_band_gain_db(int band_idx, float volume_db)