To simplify configuration of the Delay 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_DELAY_EXP_TYPE1 | Normal delay (1). |
|---|---|
| AXFX_PRESET_DELAY_EXP_TYPE2 | Normal delay (2). |
| AXFX_PRESET_DELAY_EXP_FLANGE1 | Short-period delay having a flange effect (1). |
| AXFX_PRESET_DELAY_EXP_FLANGE2 | Short-period delay having a flange effect (2). |
#include <revolution.h>
#include <revolution/axfx.h>
#include <revolution/axfx_presets.h>
/*----------------------------------------------*
For mono, stereo, surround
*----------------------------------------------*/
AXFX_DELAY_EXP delay;
AXFX_PRESET_DELAY_EXP_TYPE1(&delay);
AXFXDelayExpInit(&delay);
or
#include <revolution.h>
#include <revolution/axfx.h>
#include <revolution/axfx_presets.h>
/*----------------------------------------------*
For Dolby Pro Logic II
*----------------------------------------------*/
AXFX_DELAY_EXP_DPL2 delay;
AXFX_PRESET_DELAY_EXP_TYPE1(&delay);
AXFXDelayExpInitDpl2(&delay);
2007/08/10 Initial version.
CONFIDENTIAL