Home
last modified time | relevance | path

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

/external/webrtc/modules/audio_device/win/
Daudio_device_core_win.cc1822 WAVEFORMATEX Wfx = WAVEFORMATEX(); in InitPlayout() local
1854 Wfx.wFormatTag = WAVE_FORMAT_PCM; in InitPlayout()
1855 Wfx.wBitsPerSample = 16; in InitPlayout()
1856 Wfx.cbSize = 0; in InitPlayout()
1866 Wfx.nChannels = _playChannelsPrioList[chan]; in InitPlayout()
1867 Wfx.nSamplesPerSec = freqs[freq]; in InitPlayout()
1868 Wfx.nBlockAlign = Wfx.nChannels * Wfx.wBitsPerSample / 8; in InitPlayout()
1869 Wfx.nAvgBytesPerSec = Wfx.nSamplesPerSec * Wfx.nBlockAlign; in InitPlayout()
1873 hr = _ptrClientOut->IsFormatSupported(AUDCLNT_SHAREMODE_SHARED, &Wfx, in InitPlayout()
1879 RTC_LOG(INFO) << "nChannels=" << Wfx.nChannels in InitPlayout()
[all …]