Home | History | Annotate | Download | only in soundpool

Lines Matching defs:rightVolume

235 int SoundPool::play(int sampleID, float leftVolume, float rightVolume,
238 ALOGV("play sampleID=%d, leftVolume=%f, rightVolume=%f, priority=%d, loop=%d, rate=%f",
239 sampleID, leftVolume, rightVolume, priority, loop, rate);
270 channel->play(sample, channelID, leftVolume, rightVolume, priority, loop, rate);
380 void SoundPool::setVolume(int channelID, float leftVolume, float rightVolume)
385 channel->setVolume(leftVolume, rightVolume);
669 float rightVolume, int priority, int loop, float rate)
678 ALOGV("SoundChannel::play %p: sampleID=%d, channelID=%d, leftVolume=%f, rightVolume=%f,"
680 this, sample->sampleID(), nextChannelID, leftVolume, rightVolume,
686 mNextEvent.set(sample, nextChannelID, leftVolume, rightVolume, priority, loop, rate);
764 newTrack->setVolume(leftVolume, rightVolume);
772 mRightVolume = rightVolume;
793 float rightVolume;
809 rightVolume = mNextEvent.rightVolume();
816 play(sample, nextChannelID, leftVolume, rightVolume, priority, loop, rate);
994 void SoundChannel::setVolume_l(float leftVolume, float rightVolume)
997 mRightVolume = rightVolume;
999 mAudioTrack->setVolume(leftVolume, rightVolume);
1002 void SoundChannel::setVolume(float leftVolume, float rightVolume)
1005 setVolume_l(leftVolume, rightVolume);
1039 float rightVolume, int priority, int loop, float rate)
1044 mRightVolume = rightVolume;