Home
last modified time | relevance | path

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

/external/webrtc/modules/audio_device/
Daudio_device_buffer.cc52 play_channels_(0), in AudioDeviceBuffer()
208 play_channels_ = channels; in SetPlayoutChannels()
217 return play_channels_; in PlayoutChannels()
285 const size_t total_samples = play_channels_ * samples_per_channel; in RequestPlayoutData()
302 const size_t bytes_per_frame = play_channels_ * sizeof(int16_t); in RequestPlayoutData()
304 samples_per_channel, bytes_per_frame, play_channels_, play_sample_rate_, in RequestPlayoutData()
321 UpdatePlayStats(max_abs, num_samples_out / play_channels_); in RequestPlayoutData()
322 return static_cast<int32_t>(num_samples_out / play_channels_); in RequestPlayoutData()
331 if (play_channels_ == 1) { in GetPlayoutData()
336 } else if (play_channels_ == 2) { in GetPlayoutData()
[all …]
Daudio_device_buffer.h166 std::atomic<size_t> play_channels_; variable