Checks if an encoder is running.
DWORD BASS_Encode_IsActive(
DWORD handle
);
| handle | The encoder or channel handle... a HENCODE, HSTREAM, HMUSIC, or HRECORD. |
| BASS_ACTIVE_STOPPED | The encoder is not running. No more data will be accepted. |
| BASS_ACTIVE_ENCODING | The encoder is running. |
| BASS_ACTIVE_PAUSED | The encoder's DSP feed is paused. |
| BASS_ACTIVE_DRAINING | The encoder's queue is being drained before being freed. No new data will be accepted. |
If an encoder stops running prematurely, BASS_Encode_Stop or BASS_Encode_StopEx should still be called to release resources that were allocated for the encoding.