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

/vbox/src/VBox/Devices/Audio/
H A DAudioMixer.cpp459 PDMAUDIOVOLUME volSink; local
460 volSink.fMuted = pVolMaster->fMuted || pVolSink->fMuted;
461 volSink.uLeft = (pVolSink->uLeft * pVolMaster->uLeft) / UINT8_MAX;
462 volSink.uRight = (pVolSink->uRight * pVolMaster->uRight) / UINT8_MAX;
465 volSink.fMuted, volSink.uLeft, volSink.uRight));
474 audioMixBufSetVolume(&pStream->pOut->MixBuf, &volSink);
476 audioMixBufSetVolume(&pStream->pIn->MixBuf, &volSink);

Completed in 55 milliseconds