Home
last modified time | relevance | path

Searched refs:_playoutFramesLeft (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/modules/audio_device/dummy/
Dfile_audio_device.cc38 _playoutFramesLeft(0), in FileAudioDevice()
197 _playoutFramesLeft = 0; in StartPlayout()
243 _playoutFramesLeft = 0; in StopPlayout()
467 _playoutFramesLeft = _ptrAudioBuffer->GetPlayoutData(_playoutBuffer); in PlayThreadProcess()
468 RTC_DCHECK_EQ(_playoutFramesIn10MS, _playoutFramesLeft); in PlayThreadProcess()
474 _playoutFramesLeft = 0; in PlayThreadProcess()
Dfile_audio_device.h141 uint32_t _playoutFramesLeft; variable
/external/webrtc/modules/audio_device/linux/
Daudio_device_alsa_linux.cc92 _playoutFramesLeft(0), in AudioDeviceLinuxALSA()
1138 _playoutFramesLeft = 0; in StartPlayout()
1187 _playoutFramesLeft = 0; in StopPlayout()
1501 if (_playoutFramesLeft <= 0) { in PlayThreadProcess()
1506 _playoutFramesLeft = _ptrAudioBuffer->GetPlayoutData(_playoutBuffer); in PlayThreadProcess()
1507 assert(_playoutFramesLeft == _playoutFramesIn10MS); in PlayThreadProcess()
1510 if (static_cast<uint32_t>(avail_frames) > _playoutFramesLeft) in PlayThreadProcess()
1511 avail_frames = _playoutFramesLeft; in PlayThreadProcess()
1513 int size = LATE(snd_pcm_frames_to_bytes)(_handlePlayout, _playoutFramesLeft); in PlayThreadProcess()
1521 _playoutFramesLeft = 0; in PlayThreadProcess()
[all …]
Daudio_device_alsa_linux.h182 uint32_t _playoutFramesLeft; variable