Searched refs:_playBufferAttr (Results 1 – 2 of 2) sorted by relevance
85 memset(&_playBufferAttr, 0, sizeof(_playBufferAttr)); in AudioDeviceLinuxPulse()919 _playBufferAttr.maxlength = latency; // num bytes stored in the buffer in InitPlayout()920 _playBufferAttr.tlength = latency; // target fill level of play buffer in InitPlayout()922 _playBufferAttr.minreq = latency / WEBRTC_PA_PLAYBACK_REQUEST_FACTOR; in InitPlayout()924 _playBufferAttr.prebuf = _playBufferAttr.tlength - _playBufferAttr.minreq; in InitPlayout()1786 _playBufferAttr.maxlength = newLatency; in PaStreamUnderflowCallbackHandler()1787 _playBufferAttr.tlength = newLatency; in PaStreamUnderflowCallbackHandler()1788 _playBufferAttr.minreq = newLatency / WEBRTC_PA_PLAYBACK_REQUEST_FACTOR; in PaStreamUnderflowCallbackHandler()1789 _playBufferAttr.prebuf = _playBufferAttr.tlength - _playBufferAttr.minreq; in PaStreamUnderflowCallbackHandler()1792 _playStream, &_playBufferAttr, NULL, NULL); in PaStreamUnderflowCallbackHandler()[all …]
338 pa_buffer_attr _playBufferAttr; variable