actually i am developing an application where i need to apply bass boost 
effect to media player..i tried by using following code..

              BassBoost bassBoost = new BassBoost(0, mMediaPlayer.
getAudioSessionId());

       mMediaPlayer.attachAuxEffect(bassBoost.getId());// new
       mMediaPlayer.attachAuxEffect(bassBoost.getId());
       mMediaPlayer.setAuxEffectSendLevel(1.0f);
        bassBoost.setEnabled(true);
        BassBoost.Settings bassBoostSettingTemp =  bassBoost.getProperties();
        BassBoost.Settings bassBoostSetting = new 
BassBoost.Settings(bassBoostSettingTemp.toString());
        bassBoostSetting.strength =  1000
        bassBoost.setProperties(bassBoostSetting);
        bassBoost.setStrength((short) start);

but there is no effect i searched many sites..i did not got anything...so 
anyone please help me where I am wrong.

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to