/external/quake/quake/src/QW/client/ |
snd_mix.c | 285 if (!ch->leftvol && !ch->rightvol)
355 if (ch->rightvol > 255)
356 ch->rightvol = 255;
359 rscale = snd_scaletable[ch->rightvol >> 3];
379 int leftvol, rightvol;
local 384 rightvol = ch->rightvol;
391 right = (data * rightvol) >> 8;
|
snd_dma.c | 413 ch->rightvol = ch->master_vol; 439 ch->rightvol = (int) (ch->master_vol * scale); 440 if (ch->rightvol < 0) 441 ch->rightvol = 0; 487 if (!target_chan->leftvol && !target_chan->rightvol) 712 chan->leftvol = chan->rightvol = chan->master_vol; 751 if (!ch->leftvol && !ch->rightvol) 763 combine->rightvol += ch->rightvol; 764 ch->leftvol = ch->rightvol = 0 [all...] |
snd_mixa.s | 57 // if (ch->rightvol > 255) 58 // ch->rightvol = 255; 71 // rscale = snd_scaletable[ch->rightvol >> 3];
|
sound.h | 68 int rightvol; // 0-255 volume
member in struct:__anon6788
|
/external/quake/quake/src/WinQuake/ |
snd_mix.cpp | 293 if (!ch->leftvol && !ch->rightvol) 363 if (ch->rightvol > 255) 364 ch->rightvol = 255; 367 rscale = snd_scaletable[ch->rightvol >> 3]; 387 int leftvol, rightvol; local 392 rightvol = ch->rightvol; 399 right = (data * rightvol) >> 8;
|
snd_dma.cpp | 417 ch->rightvol = ch->master_vol; 443 ch->rightvol = (int) (ch->master_vol * scale); 444 if (ch->rightvol < 0) 445 ch->rightvol = 0; 491 if (!target_chan->leftvol && !target_chan->rightvol) 716 chan->leftvol = chan->rightvol = chan->master_vol; 755 if (!ch->leftvol && !ch->rightvol) 767 combine->rightvol += ch->rightvol; 768 ch->leftvol = ch->rightvol = 0 [all...] |
snd_mixa.s | 57 // if (ch->rightvol > 255) 58 // ch->rightvol = 255; 71 // rscale = snd_scaletable[ch->rightvol >> 3];
|
sound.h | 77 int rightvol; // 0-255 volume member in struct:__anon7233
|
WinQuake.ncb | [all...] |
/system/media/opensles/libopensles/ |
android_AudioPlayer.cpp | 55 float leftVol = 1.0f, rightVol = 1.0f; 117 rightVol *= ap->mAmplFromVolLevel * ap->mAmplFromDirectLevel; 138 rightVol *= ap->mAmplFromStereoPos[1]; 141 ap->mAudioTrack->setVolume(leftVol * leftAudibilityFactor, rightVol * rightAudibilityFactor); [all...] |
/frameworks/base/core/jni/ |
android_media_AudioTrack.cpp | 425 android_media_AudioTrack_set_volume(JNIEnv *env, jobject thiz, jfloat leftVol, jfloat rightVol ) 435 lpTrack->setVolume(leftVol, rightVol); [all...] |
/frameworks/base/services/audioflinger/ |
AudioFlinger.cpp | [all...] |
AudioFlinger.h | 753 void applyVolume(uint16_t leftVol, uint16_t rightVol, bool ramp); [all...] |
/development/ndk/platforms/android-9/arch-arm/lib/ |
libOpenSLES.so | |