Home
last modified time | relevance | path

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

/external/webrtc/modules/audio_processing/
Daudio_processing_impl_unittest.cc438 float* channel_pointers[] = {buffer.data()}; in TEST() local
449 ASSERT_EQ(apm->ProcessStream(channel_pointers, stream_config, stream_config, in TEST()
450 channel_pointers), in TEST()
478 float* channel_pointers[] = {&buffer[0], &buffer[480]}; in TEST() local
487 EXPECT_EQ(apm->ProcessStream(channel_pointers, initial_stream_config, in TEST()
488 initial_stream_config, channel_pointers), in TEST()
497 EXPECT_EQ(apm->ProcessStream(channel_pointers, stereo_stream_config, in TEST()
498 stereo_stream_config, channel_pointers), in TEST()
508 apm->ProcessStream(channel_pointers, high_sample_rate_stream_config, in TEST()
509 high_sample_rate_stream_config, channel_pointers), in TEST()
[all …]
/external/webrtc/modules/audio_mixer/
Dframe_combiner.cc183 std::array<float*, kMaximumNumberOfChannels> channel_pointers{}; in Combine() local
185 channel_pointers[i] = &(*mixing_buffer_.get())[i][0]; in Combine()
187 AudioFrameView<float> mixing_buffer_view(&channel_pointers[0], in Combine()