To simplify configuration of the Chorus Expansion, the following presets have been prepared in the axfx_presets.h file. These presets can be used with the Dolby Pro Logic II (DPL2) version as well.
| AXFX_PRESET_CHORUS_EXP_TYPE1 | Typical chorus (1). |
|---|---|
| AXFX_PRESET_CHORUS_EXP_TYPE2 | Typical chorus (2). |
| AXFX_PRESET_CHORUS_EXP_TYPE3 | Typical chorus (3). |
| AXFX_PRESET_CHORUS_EXP_FLANGER1 | Flanger (1). |
| AXFX_PRESET_CHORUS_EXP_FLANGER2 | Flanger (2). |
| AXFX_PRESET_CHORUS_EXP_ECHO1 | Chorus echo (1). |
| AXFX_PRESET_CHORUS_EXP_ECHO2 | Chorus echo (2). |
| AXFX_PRESET_CHORUS_EXP_WOBBLE1 | Chorus with larger undulations (1). |
| AXFX_PRESET_CHORUS_EXP_WOBBLE2 | Chorus with larger undulations (2). |
#include <revolution.h>
#include <revolution/axfx.h>
#include <revolution/axfx_presets.h>
/*----------------------------------------------*
For mono, stereo, surround
*----------------------------------------------*/
AXFX_CHORUS_EXP chorus;
AXFX_PRESET_CHORUS_EXP_TYPE1(&chorus);
AXFXChorusExpInit(&chorus);
or
#include <revolution.h>
#include <revolution/axfx.h>
#include <revolution/axfx_presets.h>
/*----------------------------------------------*
For Dolby Pro Logic II
*----------------------------------------------*/
AXFX_CHORUS_EXP_DPL2 chorus;
AXFX_PRESET_CHORUS_EXP_TYPE1(&chorus);
AXFXChorusExpInitDpl2(&chorus);
2007/08/10 Initial version.
CONFIDENTIAL