AXFX_DELAY_EXP(_DPL2) Presets

Description

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).

Example

#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);

See Also

Revision History

2007/08/10 Initial version.


CONFIDENTIAL