Searched refs:vl (Results 1 - 9 of 9) sorted by relevance

/frameworks/av/media/libaudioprocessing/
H A DAudioResampler.cpp64 size_t &outputIndex, int32_t* out, size_t &inputIndex, int32_t vl, int32_t vr,
67 size_t &outputIndex, int32_t* out, size_t &inputIndex, int32_t vl, int32_t vr,
340 int32_t vl = mVolume[0];
378 out[outputIndex++] += vl * Interp(mX0L, in[0], phaseFraction);
396 AsmStereo16Loop(in, maxOutPt, maxInIdx, outputIndex, out, inputIndex, vl, vr,
402 out[outputIndex++] += vl * Interp(in[inputIndex*2-2],
438 int32_t vl = mVolume[0];
474 out[outputIndex++] += vl * sample;
492 AsmMono16Loop(in, maxOutPt, maxInIdx, outputIndex, out, inputIndex, vl, vr,
500 out[outputIndex++] += vl * sampl
[all...]
H A DAudioResamplerCubic.cpp56 int32_t vl = mVolume[0]; local
82 out[outputIndex++] += vl * interp(&left, x);
123 int32_t vl = mVolume[0]; local
151 out[outputIndex++] += vl * sample;
H A DAudioMixer.cpp1122 int32_t vl = t->prevVolume[0]; local
1128 // t, vlInc/65536.0f, vl/65536.0f, t->volume[0],
1129 // (vl + vlInc*frameCount)/65536.0f, frameCount);
1141 *out++ += (vl >> 16) * l;
1144 vl += vlInc;
1151 *out++ += (vl >> 16) * (*temp++ >> 12);
1153 vl += vlInc;
1157 t->prevVolume[0] = vl;
1165 const int16_t vl = t->volume[0]; local
1173 out[0] = mulAdd(l, vl, ou
1202 int32_t vl = t->prevVolume[0]; local
1247 int32_t vl = t->prevVolume[0]; local
1292 int32_t vl = t->prevVolume[0]; local
1320 const int16_t vl = t->volume[0]; local
1335 int32_t vl = t->prevVolume[0]; local
1358 const int16_t vl = t->volume[0]; local
1608 const int16_t vl = t.volume[0]; local
[all...]
/frameworks/av/media/libaudioclient/include/media/
H A DTrackPlayerBase.h42 void setPlayerVolume(float vl, float vr);
/frameworks/av/media/libaudioclient/
H A DTrackPlayerBase.cpp52 void TrackPlayerBase::setPlayerVolume(float vl, float vr) { argument
55 mPlayerVolumeL = vl;
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
H A DEffectReverb.cpp498 LVM_INT32 vl = (LVM_INT32)pContext->prevLeftVolume << 16; local
499 LVM_INT32 incl = (((LVM_INT32)pContext->leftVolume << 16) - vl) / frameCount;
505 clamp16((LVM_INT32)((vl >> 16) * OutFrames16[2*i]) >> 12);
509 vl += incl;
/frameworks/av/services/audioflinger/
H A DTracks.cpp1099 float vl = float_from_gain(gain_minifloat_unpack_left(vlr)); local
1102 if (vl > GAIN_FLOAT_UNITY) {
1103 vl = GAIN_FLOAT_UNITY;
1111 vl *= v;
1114 vlr = gain_minifloat_pack(gain_from_float(vl), gain_from_float(vr));
H A DThreads.cpp4304 uint32_t vl, vr; // in U8.24 integer format local
4307 vl = vr = 0;
4336 // then derive vl and vr as U8.24 versions for the effect chain
4338 vl = (uint32_t) (scaleto8_24 * vlf);
4340 // vl and vr are now in U8.24 format
4352 if (chain != 0 && chain->setVolume_l(&vl, &vr)) {
4356 vlf = (float)vl / (1 << 24);
4863 uint32_t vl = (uint32_t)(left * (1 << 24)); local
4870 mEffectChains[0]->setVolume_l(&vl, &vr);
4871 left = (float)vl / (
[all...]
/frameworks/compile/slang/
H A Dslang_rs_reflection.cpp2756 va_list vl; local
2757 va_start(vl, Argc);
2760 const char *ArgType = va_arg(vl, const char *);
2761 const char *ArgName = va_arg(vl, const char *);
2765 va_end(vl);

Completed in 2689 milliseconds