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

/vbox/src/VBox/Devices/Audio/
H A DAudioMixer.cpp423 PDMAUDIOVOLUME volOut; local
424 volOut.fMuted = pVol->fMuted;
425 volOut.uLeft = u32VolumeLeft * 0x80000000; /* Maximum is 0x80000000 */
426 volOut.uRight = u32VolumeRight * 0x80000000; /* Maximum is 0x80000000 */
428 return volOut;
433 PDMAUDIOVOLUME volOut; local
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 */
441 pVol, pVol->fMuted, pVol->uLeft, pVol->uRight, volOut
[all...]

Completed in 33 milliseconds