Searched refs:_playBufferAttr (Results 1 – 2 of 2) sorted by relevance
100 memset(&_playBufferAttr, 0, sizeof(_playBufferAttr)); in AudioDeviceLinuxPulse()1194 _playBufferAttr.maxlength = latency; // num bytes stored in the buffer in InitPlayout()1195 _playBufferAttr.tlength = latency; // target fill level of play buffer in InitPlayout()1197 _playBufferAttr.minreq = latency / WEBRTC_PA_PLAYBACK_REQUEST_FACTOR; in InitPlayout()1199 _playBufferAttr.prebuf = _playBufferAttr.tlength - in InitPlayout()1200 _playBufferAttr.minreq; in InitPlayout()2322 _playBufferAttr.maxlength = newLatency; in PaStreamUnderflowCallbackHandler()2323 _playBufferAttr.tlength = newLatency; in PaStreamUnderflowCallbackHandler()2324 _playBufferAttr.minreq = newLatency / WEBRTC_PA_PLAYBACK_REQUEST_FACTOR; in PaStreamUnderflowCallbackHandler()2325 _playBufferAttr.prebuf = _playBufferAttr.tlength - _playBufferAttr.minreq; in PaStreamUnderflowCallbackHandler()[all …]
367 pa_buffer_attr _playBufferAttr; variable