hello guys i have a problem with bass and bass-mix initialization. the following methods are always return false.
i have a little-bit confusion whether im going on correct way or

?
if (!BASS.BASS_Init(-1, DEFAULT_SAMPLE_RATE, BASS.BASS_DEVICE_DEFAULT | BASS.BASS_DEVICE_MONO))//Set Sample Rate / MONO
{
System.out.println("Pllugin load failed 1");
}
if (!BASS.BASS_SetConfig(BASSmix.BASS_CONFIG_MIXER_FILTER, 50))
/*Set filter for anti aliasing*/
{
System.out.println("Pllugin load failed 2 ");
}
if (!BASS.BASS_SetConfig(BASS.BASS_CONFIG_FLOATDSP, 50)) // Set floating parameters to be passed
{
System.out.println("Pllugin load failed 3");
}
Thanks Rajesh