Home | History | Annotate | Download | only in soundpool

Lines Matching refs:rightVolume

241 int SoundPool::play(int sampleID, float leftVolume, float rightVolume,
244 LOGV("play sampleID=%d, leftVolume=%f, rightVolume=%f, priority=%d, loop=%d, rate=%f",
245 sampleID, leftVolume, rightVolume, priority, loop, rate);
276 channel->play(sample, channelID, leftVolume, rightVolume, priority, loop, rate);
374 void SoundPool::setVolume(int channelID, float leftVolume, float rightVolume)
379 channel->setVolume(leftVolume, rightVolume);
548 float rightVolume, int priority, int loop, float rate)
557 LOGV("SoundChannel::play %p: sampleID=%d, channelID=%d, leftVolume=%f, rightVolume=%f,"
559 this, sample->sampleID(), nextChannelID, leftVolume, rightVolume,
565 mNextEvent.set(sample, nextChannelID, leftVolume, rightVolume, priority, loop, rate);
623 newTrack->setVolume(leftVolume, rightVolume);
635 mRightVolume = rightVolume;
658 float rightVolume;
674 rightVolume = mNextEvent.rightVolume();
681 play(sample, nextChannelID, leftVolume, rightVolume, priority, loop, rate);
851 void SoundChannel::setVolume_l(float leftVolume, float rightVolume)
854 mRightVolume = rightVolume;
855 if (mAudioTrack != 0) mAudioTrack->setVolume(leftVolume, rightVolume);
858 void SoundChannel::setVolume(float leftVolume, float rightVolume)
861 setVolume_l(leftVolume, rightVolume);
895 float rightVolume, int priority, int loop, float rate)
900 mRightVolume = rightVolume;