Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/audio_device/win/
Daudio_device_wave_win.cc1737 _waveHeaderOut[n].dwBufferLength = bytesPerSample*PLAY_BUF_SIZE_IN_SAMPLES; in InitPlayout()
1741 memset(_playBuffer[n], 0, bytesPerSample*PLAY_BUF_SIZE_IN_SAMPLES); in InitPlayout()
2577 int8_t zeroVec[4*PLAY_BUF_SIZE_IN_SAMPLES]; // max allocation in PrepareStartPlayout()
2578 memset(zeroVec, 0, 4*PLAY_BUF_SIZE_IN_SAMPLES); in PrepareStartPlayout()
2581 Write(zeroVec, PLAY_BUF_SIZE_IN_SAMPLES); in PrepareStartPlayout()
2582 Write(zeroVec, PLAY_BUF_SIZE_IN_SAMPLES); in PrepareStartPlayout()
2583 Write(zeroVec, PLAY_BUF_SIZE_IN_SAMPLES); in PrepareStartPlayout()
3377 int8_t playBuffer[4*PLAY_BUF_SIZE_IN_SAMPLES]; in PlayProc()
3461 uint32_t nSamples = _ptrAudioBuffer->RequestPlayoutData(PLAY_BUF_SIZE_IN_SAMPLES); in PlayProc()
3471 if (nSamples != PLAY_BUF_SIZE_IN_SAMPLES) in PlayProc()
[all …]
Daudio_device_wave_win.h36 const uint32_t PLAY_BUF_SIZE_IN_SAMPLES = (N_PLAY_SAMPLES_PER_SEC/100); variable
259 int8_t _playBuffer[N_BUFFERS_OUT][4*PLAY_BUF_SIZE_IN_SAMPLES];
/external/webrtc/webrtc/modules/audio_device/mac/
Daudio_device_mac.h55 const uint32_t PLAY_BUF_SIZE_IN_SAMPLES = variable
319 SInt16 _renderConvertData[PLAY_BUF_SIZE_IN_SAMPLES];
Daudio_device_mac.cc238 while (powerOfTwo < PLAY_BUF_SIZE_IN_SAMPLES) { in Init()