BASS_BFX_VOLUME_ENV

BASS FX

BASS_BFX_VOLUME_ENV structure

Used with BASS_FXGetParameters and BASS_FXSetParameters to retrieve and set the parameters of a volume envelope effect.

typedef struct {
    int lChannel;
    int lNodeCount;
    const struct BASS_BFX_ENV_NODE *pNodes;
    BOOL bFollow;
} BASS_BFX_VOLUME_ENV;

Members

lChannel

The affected channels using BASS_BFX_CHANxxx flags

lNodeCount Number of nodes
pNodes The nodes
bFollow

FALSE = process envelope from start to finish, TRUE = follow the position of the channel

Note
There must be at least 1 node

See also
BASS_ChannelSetFX