Checks if a sample, stream, or MOD music is active (playing) or stalled. Can also check if a recording is in progress.
DWORD BASS_ChannelIsActive( DWORD handle );
handle | The channel handle... a HCHANNEL, HMUSIC, HSTREAM, or HRECORD. |
BASS_ACTIVE_STOPPED | The channel is not active, or handle is not a valid channel. |
BASS_ACTIVE_PLAYING | The channel is playing (or recording). |
BASS_ACTIVE_PAUSED | The channel is paused. |
BASS_ACTIVE_PAUSED_DEVICE | The channel's device is paused. |
BASS_ACTIVE_STALLED | Playback of the stream has been stalled due to a lack of sample data. Playback will automatically resume once there is sufficient data to do so. |
The BASS_ACTIVE_PAUSED_DEVICE state can be the result of a BASS_Pause call or of the device stopping unexpectedly (eg. a USB soundcard being disconnected). In either case, playback will be resumed by BASS_Start.
BASS_ErrorGetCode can be used to differentiate a stopped channel from an invalid channel. The error code will be BASS_OK if the channel is valid and stopped.
Syncs can be set via BASS_ChannelSetSync to be notified when a channel reaches the end (BASS_SYNC_END sync) or stalls/resumes (BASS_SYNC_STALL sync) or pauses due to device failure (BASS_SYNC_DEV_FAIL sync).