Changeset 87994 in vbox for trunk/src/VBox/Devices/Audio/DrvHostPulseAudio.cpp
- Timestamp:
- Mar 7, 2021 3:22:36 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostPulseAudio.cpp
r87993 r87994 803 803 pStreamPA->BufAttr.maxlength = -1; /* Let the PulseAudio server choose the biggest size it can handle. */ 804 804 pStreamPA->BufAttr.prebuf = cbLatency; 805 pStreamPA->BufAttr.minreq = DrvAudioHlpFramesToBytes( pCfgReq->Backend.cFramesPeriod, &pCfgReq->Props);805 pStreamPA->BufAttr.minreq = DrvAudioHlpFramesToBytes(&pCfgReq->Props, pCfgReq->Backend.cFramesPeriod); 806 806 807 807 LogFunc(("Requested: BufAttr tlength=%RU32, maxLength=%RU32, minReq=%RU32\n", … … 849 849 pStreamPA->SampleSpec.channels = pCfgReq->Props.cChannels; 850 850 851 pStreamPA->BufAttr.fragsize = DrvAudioHlpFramesToBytes( pCfgReq->Backend.cFramesPeriod, &pCfgReq->Props);851 pStreamPA->BufAttr.fragsize = DrvAudioHlpFramesToBytes(&pCfgReq->Props, pCfgReq->Backend.cFramesPeriod); 852 852 pStreamPA->BufAttr.maxlength = -1; /* Let the PulseAudio server choose the biggest size it can handle. */ 853 853
Note:
See TracChangeset
for help on using the changeset viewer.