Initializes an output device.
BOOL BASS_Init( int device, DWORD freq, DWORD flags, HWND win, void *clsid );
device | The device to use... -1 = default device, 0 = no sound, 1 = first real output device. BASS_GetDeviceInfo can be used to enumerate the available devices. | ||||||||||||||||||||||
freq | Output sample rate. | ||||||||||||||||||||||
flags | A combination of these flags.
| ||||||||||||||||||||||
win | The application's main window... 0 = the desktop window (use this for console applications). This is only needed when using DirectSound output. | ||||||||||||||||||||||
clsid | Unused. Set to NULL. |
BASS_ERROR_DEVICE | device is invalid. |
BASS_ERROR_NOTAVAIL | The BASS_DEVICE_REINIT flag cannot be used when device is -1. Use the real device number instead. |
BASS_ERROR_ALREADY | The device has already been initialized. The BASS_DEVICE_REINIT flag can be used to request reinitialization. |
BASS_ERROR_ILLPARAM | win is not a valid window handle. |
BASS_ERROR_DRIVER | There is no available device driver. |
BASS_ERROR_BUSY | Something else has exclusive use of the device. |
BASS_ERROR_FORMAT | The specified format is not supported by the device. Try changing the freq parameter. |
BASS_ERROR_MEM | There is insufficient memory. |
BASS_ERROR_UNKNOWN | Some other mystery problem! |
Simultaneously using multiple devices is supported in the BASS API via a context switching system; instead of there being an extra "device" parameter in the function calls, the device to be used is set prior to calling the functions. BASS_SetDevice is used to switch the current device. When successful, BASS_Init automatically sets the current thread's device to the one that was just initialized.
The default device (device = -1) maps to one of the real devices (not the no sound device). It will always be the "Default" device unless that has been disabled via the BASS_CONFIG_DEV_DEFAULT config option. BASS_GetDevice can be used afterwards to confirm which device is being used.
The BASS_CONFIG_DEV_BUFFER and BASS_CONFIG_DEV_PERIOD config options determine how much data is buffered for the device and how often it is updated.
When the BASS_DEVICE_REINIT flag is specified to request reinitialization, any BASS channels that were playing prior will continue to do so, if successful. But there is likely to be a small interruption to the sound, so it is best to reinitialize while nothing is playing. If reinitialization fails then playback will be paused and the device will be left in a partially-freed state. Reinitialization could be tried again with different parameters or BASS_Free used to fully free the device. Until BASS_Free is used, the device's BASS channels will still exist and can be moved to another device via BASS_ChannelSetDevice.
On Android, when the BASS_DEVICE_AUDIOTRACK flag is not specified, AAudio or OpenSL ES output may be used depending on the BASS_CONFIG_ANDROID_AAUDIO config option setting. AAudio has a low latency mode, which will be enabled when
The win parameter is only used with DirectSound output on Windows and is ignored in all other cases. The BASS_DEVICE_STEREO flag is ignored on macOS and Windows, except when using DirectSound output.
The BASS_DEVICE_SOFTWARE flag is only used on Windows to disable DirectSound hardware mixing and on Android to disable AAudio fastpath output.
The BASS_DEVICE_SPEAKERS flag only has effect on Linux, typically when using PulseAudio or PipeWire output.
The BASS_DEVICE_DMIX flag is only available on Linux, and allows multiple applications to share the device (if they all use "dmix"). It may also be possible for multiple applications to use exclusive access if the device is capable of hardware mixing. If exclusive access initialization fails, the BASS_DEVICE_DMIX flag will automatically be tried; if that happens, it can be detected via BASS_GetInfo and the initflags.
BASS_Init(-1, 44100, 0, NULL, NULL);