BASS_CONFIG_PAUSE_NOPLAY config option

Prevent channels being played while the output is paused?

BASS_SetConfig(
    BASS_CONFIG_PAUSE_NOPLAY,
    BOOL noplay
);

Parameters

noplayIf TRUE, channels cannot be played while the output is paused.

Remarks

This config option determines whether BASS_Pause pauses the output device (if set to TRUE) or only the channels currently playing on it (if set to FALSE). If the device is paused then no channels can be played until it is restarted with BASS_Start.

The default setting is TRUE.

See also

BASS_GetConfig, BASS_SetConfig, BASS_Pause