/frameworks/av/services/audiopolicy/common/managerdefinitions/include/ |
D | Gains.h | 36 static const VolumeCurvePoint sDefaultVolumeCurve[Volume::VOLCNT]; 38 static const VolumeCurvePoint sDefaultMediaVolumeCurve[Volume::VOLCNT]; 40 static const VolumeCurvePoint sExtMediaSystemVolumeCurve[Volume::VOLCNT]; 42 static const VolumeCurvePoint sSpeakerMediaVolumeCurve[Volume::VOLCNT]; 43 static const VolumeCurvePoint sSpeakerMediaVolumeCurveDrc[Volume::VOLCNT]; 45 static const VolumeCurvePoint sSpeakerSonificationVolumeCurve[Volume::VOLCNT]; 46 static const VolumeCurvePoint sSpeakerSonificationVolumeCurveDrc[Volume::VOLCNT]; 47 static const VolumeCurvePoint sDefaultSystemVolumeCurve[Volume::VOLCNT]; 48 static const VolumeCurvePoint sDefaultSystemVolumeCurveDrc[Volume::VOLCNT]; 49 static const VolumeCurvePoint sHeadsetSystemVolumeCurve[Volume::VOLCNT]; [all …]
|
D | VolumeCurve.h | 90 device = Volume::getDeviceForVolume(device); in getVolumeIndex() 110 device = Volume::getDeviceForVolume(device); in hasVolumeIndexForDevice()
|
D | StreamDescriptor.h | 43 device = Volume::getDeviceForVolume(device); in hasVolumeIndexForDevice()
|
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/ |
D | Gains.cpp | 36 Gains::sDefaultVolumeCurve[Volume::VOLCNT] = { 42 Gains::sDefaultMediaVolumeCurve[Volume::VOLCNT] = { 47 Gains::sExtMediaSystemVolumeCurve[Volume::VOLCNT] = { 52 Gains::sSpeakerMediaVolumeCurve[Volume::VOLCNT] = { 57 Gains::sSpeakerMediaVolumeCurveDrc[Volume::VOLCNT] = { 62 Gains::sSpeakerSonificationVolumeCurve[Volume::VOLCNT] = { 67 Gains::sSpeakerSonificationVolumeCurveDrc[Volume::VOLCNT] = { 77 Gains::sDefaultSystemVolumeCurve[Volume::VOLCNT] = { 82 Gains::sDefaultSystemVolumeCurveDrc[Volume::VOLCNT] = { 87 Gains::sHeadsetSystemVolumeCurve[Volume::VOLCNT] = { [all …]
|
D | StreamDescriptor.cpp | 48 device = Volume::getDeviceForVolume(device); in getVolumeIndex()
|
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/loaders/ |
D | Mandelbulb.java | 25 import com.example.android.rs.vr.engine.Volume; 53 public static Volume buildRSVolume(RenderScript rs, in buildRSVolume() 57 Volume v = new Volume(); in buildRSVolume()
|
D | Droid.java | 25 import com.example.android.rs.vr.engine.Volume; 60 public static Volume buildRSVolume(RenderScript rs, in buildRSVolume() 64 Volume v = new Volume(); in buildRSVolume()
|
D | VolumeLoader.java | 22 import com.example.android.rs.vr.engine.Volume; 58 public Volume getVolume(RenderScript rs, String name) { in getVolume() 75 Volume v = LoaderDicom.buildRSVolume(rs, new File(baseDir, dir), mListener); in getVolume() 85 Volume v = LoaderRaw.buildRSVolume(rs, new File(baseDir, dir), p, mListener); in getVolume()
|
D | LoaderDicom.java | 25 import com.example.android.rs.vr.engine.Volume; 266 public static Volume buildVolume(String dirName) { in buildVolume() 270 public static Volume buildVolume(File dir) { in buildVolume() 289 Volume v = new Volume(); in buildVolume() 335 public static Volume buildRSVolume(final RenderScript rs, File dir, in buildRSVolume() 355 final Volume v = new Volume(); in buildRSVolume() 495 public static Volume buildRSVolume2(final RenderScript rs, File dir, in buildRSVolume2() 514 Volume v = new Volume(); in buildRSVolume2()
|
D | LoaderRaw.java | 25 import com.example.android.rs.vr.engine.Volume; 51 public static Volume buildRSVolume(final RenderScript rs, File dir, Properties prop, in buildRSVolume() 54 Volume v = new Volume(); in buildRSVolume()
|
/frameworks/av/media/libeffects/lvm/lib/Bass/src/ |
D | LVDBE_Control.c | 213 LVM_INT16 Volume = 0; /* Required volume in dBs */ in LVDBE_SetVolume() local 225 Volume = VOLUME_MAX; in LVDBE_SetVolume() 229 Volume = pParams->VolumedB; in LVDBE_SetVolume() 237 dBOffset = (LVM_UINT16)(6 + Volume % 6); /* Get the dBs 0-5 */ in LVDBE_SetVolume() 238 dBShifts = (LVM_UINT16)(Volume / -6); /* Get the 6dB shifts */ in LVDBE_SetVolume()
|
D | LVDBE_Init.c | 246 pInstance->pData->AGCInstance.Volume = pInstance->pData->AGCInstance.Target; in LVDBE_Init()
|
/frameworks/av/media/libeffects/lvm/lib/Bundle/src/ |
D | LVM_Control.c | 344 LVM_INT16 Volume = 0; /* Required volume in dBs */ in LVM_SetVolume() local 351 Volume = 0; in LVM_SetVolume() 355 Volume = pParams->VC_EffectLevel; in LVM_SetVolume() 359 if(Volume > -60) /* Limit volume loss to PSA Limits*/ in LVM_SetVolume() 360 pInstance->PSA_GainOffset=(LVM_INT16)(-Volume);/* Loss is compensated by Gain*/ in LVM_SetVolume() 374 if(Volume > -pInstance->Headroom) in LVM_SetVolume() 375 Volume = (LVM_INT16)-pInstance->Headroom; in LVM_SetVolume() 383 if (Volume != 0) in LVM_SetVolume() 385 pInstance->VC_VolumedB = Volume; in LVM_SetVolume() 395 dBOffset = (LVM_UINT16)((-Volume) % 6); /* Get the dBs 0-5 */ in LVM_SetVolume() [all …]
|
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/ |
D | VrActivity.java | 39 import com.example.android.rs.vr.engine.Volume; 72 class VrSetupTask extends AsyncTask<String, Integer, Volume> { 94 protected Volume doInBackground(String... names) { in doInBackground() 111 protected void onPostExecute(Volume v) { in onPostExecute()
|
D | VrView.java | 38 import com.example.android.rs.vr.engine.Volume; 305 public void setVolume(RenderScript rs, Volume v) { in setVolume() 459 class VrBinGridTask extends AsyncTask<Volume, String, Long> { 462 protected Long doInBackground(Volume... v) { in doInBackground()
|
/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
D | AGC_MIX_VOL_2St1Mon_D32_WRA.c | 103 LVM_INT32 Vol_Current = pInstance->Volume; /* Actual volume setting */ in AGC_MIX_VOL_2St1Mon_D32_WRA() 191 pInstance->Volume = Vol_Current; /* Actual volume setting */ in AGC_MIX_VOL_2St1Mon_D32_WRA()
|
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/ |
D | Cube.java | 25 public Cube(Volume v, float delta) { in Cube() 29 public Cube(Volume v, float delta, float[] trim) { in Cube()
|
D | RsBrickedBitMask.java | 36 Volume mVolume;
|
D | Volume.java | 28 public class Volume { class
|
D | VrState.java | 30 public Volume mVolume;
|
/frameworks/base/docs/html/training/managing-audio/ |
D | volume-playback.jd | 1 page.title=Controlling Your App’s Volume and Playback 18 <li><a href="#HardwareVolumeKeys">Use Hardware Volume Keys to Control Your App’s Audio 19 Volume</a></li> 56 <h2 id="HardwareVolumeKeys">Use Hardware Volume Keys to Control Your App’s Audio Volume</h2>
|
/frameworks/base/docs/html/ndk/guides/ |
D | x86.jd | 135 For more information about these conditions and results, see Volume 1 Appendix E chapter 136 E.4.2.3 and Volume 2, p 3-488, of the 160 For more information about these conditions and results, see Volume 1 Appendix E chapter 161 E.4.2.3 and Volume 2, p 3-497, of the 172 How do I use VRECPE/VRECPEQ for reciprocal estimate?</a> on the ARM website, and Volume 2, p. 182 RealView Compilation Tools Assembler Guide</a>, and Volume 2, p. 4-325 of the 193 more information about this result, see Volume 1, Appendix E, E.4.2.3, of the
|
/frameworks/av/media/libeffects/lvm/lib/Common/lib/ |
D | AGC.h | 45 LVM_INT32 Volume; /* The current volume setting */ member
|
/frameworks/av/services/audiopolicy/common/include/ |
D | Volume.h | 44 class Volume
|
/frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/examples/ |
D | Android.mk | 59 PolicySubsystem-Volume.xml \
|