Searched defs:Volume (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/media/libeffects/lvm/lib/Bass/src/
H A DLVDBE_Control.c198 /* DBE Vol Control Volume setting */
213 LVM_INT16 Volume = 0; /* Required volume in dBs */ local
225 Volume = VOLUME_MAX;
229 Volume = pParams->VolumedB;
237 dBOffset = (LVM_UINT16)(6 + Volume % 6); /* Get the dBs 0-5 */
238 dBShifts = (LVM_UINT16)(Volume / -6); /* Get the 6dB shifts */
247 pInstance->pData->AGCInstance.VolumeTC = LVDBE_VolumeTCTable[(LVM_UINT16)pParams->SampleRate]; /* Volume update time constant */
347 * Update the Volume if the volume demand has changed
/frameworks/av/media/libeffects/lvm/lib/Common/lib/
H A DAGC.h45 LVM_INT32 Volume; /* The current volume setting */ member in struct:__anon145
51 LVM_INT16 VolumeShift; /* Volume shift scaling */
52 LVM_INT16 VolumeTC; /* Volume update time constant */
/frameworks/av/services/audiopolicy/common/include/
H A DVolume.h33 class Volume class
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
H A DVolume.java28 public class Volume { class
29 private static final String LOGTAG = "Volume";
40 String ret = "Volume[" + mDimx + "," + mDimy + "," + mDimz + "]";
/frameworks/av/media/libeffects/lvm/lib/Bundle/src/
H A DLVM_Control.c166 * Volume Control parameters
344 LVM_INT16 Volume = 0; /* Required volume in dBs */ local
351 Volume = 0;
355 Volume = pParams->VC_EffectLevel;
359 if(Volume > -60) /* Limit volume loss to PSA Limits*/
360 pInstance->PSA_GainOffset=(LVM_INT16)(-Volume);/* Loss is compensated by Gain*/
374 if(Volume > -pInstance->Headroom)
375 Volume = (LVM_INT16)-pInstance->Headroom;
383 if (Volume != 0)
385 pInstance->VC_VolumedB = Volume;
[all...]

Completed in 434 milliseconds