i'm trying to add the equalizer effect to my android application in a wrapper for MediaPlayer that I am writting (bacause of the states problem he he).
The app is running on my phone using android version 2.3.4 (supposedly compatible with equalizer). But I create it as the manual says but I don't get it to enable the equalizer. eq.setEnable() seems just don't work.
I'm clueless because Im looking for possible causes and I cannot find one. I hope someone could give me a hint on what's happening here :)
This is the portion of the wrapper where I create and enable the equalizer:
class MPWrapper implements Deck{
private final short NUM_EQ_BANDS = 5;
public Equalizer eq = null;
private MediaPlayer mp = null;
private Uri pathtosong = null;
private boolean mpPrepared = false;
private boolean mpPaused = false;
Context context = null;
MPWrapper(Context context){
this.context = context;
mp = new MediaPlayer();
eq = new Equalizer(0,mp.getAudioSessionId());
eq.setEnabled(true);
}
Here I release both the equalizer and the MediaPlayer. It's called from my activity:
public void shutdown(){
if(mp.isPlaying())
mp.stop();
if(eq != null)
eq.release();
if(mp != null)
mp.release();
}
And in my activity I have this code to modify the 500Hz band.
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setVolumeControlStream(AudioManager.STREAM_MUSIC);
setContentView(R.layout.main);
mpw = new MPWrapper(this);
eqBar1 = (SeekBar) findViewById(R.id.eqBar1);
eqBar1.setMax(65535);
short bandNumber1 = mpw.eq.getBand(500000);
short bandLevel1 = mpw.eq.getBandLevel(bandNumber1);
eqBar1.setProgress(bandLevel1);
eqBar1.setOnSeekBarChangeListener(eqBand1);
}
/*
* Slider for equalizer band 1 event handler.
*/
private OnSeekBarChangeListener eqBand1 = new OnSeekBarChangeListener(){
@Override
public void onProgressChanged(SeekBar seekBar, int progress,
boolean fromUser) {
Log.i("PocPlayer", "Slide bar is moving..");
mpw.eq.setBandLevel(mpw.eq.getBand(500000), (short)progress);
}
Hope someone could help me, thx!