diff --git a/media/jni/soundpool/SoundPool.h b/media/jni/soundpool/SoundPool.h index e0ead9a18a7a7..94cd978734ea3 100644 --- a/media/jni/soundpool/SoundPool.h +++ b/media/jni/soundpool/SoundPool.h @@ -186,9 +186,6 @@ private: SoundPool() {} // no default constructor bool startThreads(); void doLoad(sp& sample); - inline void notify(const SoundPoolEvent* event) { - android_soundpool_SoundPool_notify(mSoundPoolRef, event); - } sp findSample(int sampleID) { return mSamples.valueFor(sampleID); } SoundChannel* findChannel (int channelID); SoundChannel* findNextChannel (int channelID); @@ -202,7 +199,6 @@ private: int run(); void quit(); - jobject mSoundPoolRef; Mutex mLock; Mutex mRestartLock; Condition mCondition;