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

/vbox/src/VBox/Devices/Audio/
H A DAudioMixer.cpp40 int audioMixerUpdateSinkVolume(PAUDMIXSINK pSink, const PPDMAUDIOVOLUME pVolMaster, const PPDMAUDIOVOLUME pVolSink);
431 static inline PDMAUDIOVOLUME audioMixerVolMix(const PPDMAUDIOVOLUME pVolMaster, PPDMAUDIOVOLUME pVol) argument
434 volOut.fMuted = pVolMaster->fMuted || pVol->fMuted;
435 volOut.uLeft = ASMMultU64ByU32DivByU32(pVolMaster->uLeft, pVol->uLeft, 0x80000000U); /* Maximum is 0x80000000U */
436 volOut.uRight = ASMMultU64ByU32DivByU32(pVolMaster->uRight, pVol->uRight, 0x80000000U); /* Maximum is 0x80000000U */
439 pVolMaster, pVolMaster->fMuted, pVolMaster->uLeft, pVolMaster->uRight));
446 int audioMixerUpdateSinkVolume(PAUDMIXSINK pSink, const PPDMAUDIOVOLUME pVolMaster, cons argument
[all...]

Completed in 39 milliseconds