Home
last modified time | relevance | path

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

/external/webrtc/modules/audio_processing/aec3/
Decho_remover.cc126 std::vector<std::vector<std::vector<float>>>* linear_output,
239 std::vector<std::vector<std::vector<float>>>* linear_output, in ProcessCapture() argument
373 if (linear_output) { in ProcessCapture()
374 RTC_DCHECK_GE(1, linear_output->size()); in ProcessCapture()
375 RTC_DCHECK_EQ(num_capture_channels_, linear_output[0].size()); in ProcessCapture()
377 RTC_DCHECK_EQ(kBlockSize, (*linear_output)[0][ch].size()); in ProcessCapture()
378 std::copy(e[ch].begin(), e[ch].end(), (*linear_output)[0][ch].begin()); in ProcessCapture()
Decho_canceller3.cc107 AudioBuffer* linear_output, in ProcessCaptureFrameContent() argument
123 if (linear_output) { in ProcessCaptureFrameContent()
127 FillSubFrameView(linear_output, sub_frame_index, in ProcessCaptureFrameContent()
138 if (linear_output) { in ProcessCaptureFrameContent()
740 AudioBuffer* linear_output, in ProcessCapture() argument
750 if (linear_output && !linear_output_framer_) { in ProcessCapture()
773 ProcessCaptureFrameContent(linear_output, capture, level_change, in ProcessCapture()
780 ProcessCaptureFrameContent(linear_output, capture, level_change, in ProcessCapture()
Dblock_processor.cc55 std::vector<std::vector<std::vector<float>>>* linear_output,
109 std::vector<std::vector<std::vector<float>>>* linear_output, in ProcessCapture() argument
196 render_buffer_->GetRenderBuffer(), linear_output, capture_block); in ProcessCapture()
Decho_remover.h45 std::vector<std::vector<std::vector<float>>>* linear_output,
Dblock_processor.h62 std::vector<std::vector<std::vector<float>>>* linear_output,
Decho_canceller3.h114 AudioBuffer* linear_output,
Decho_canceller3_unittest.cc116 std::vector<std::vector<std::vector<float>>>* linear_output, in ProcessCapture() argument
142 std::vector<std::vector<std::vector<float>>>* linear_output, in ProcessCapture() argument
/external/webrtc/modules/audio_processing/include/
Dmock_audio_processing.h62 AudioBuffer* linear_output,
137 ((rtc::ArrayView<std::array<float, 160>> linear_output)),
Daudio_processing.h576 rtc::ArrayView<std::array<float, 160>> linear_output) const = 0;
/external/libgsm/src/
Dtoast_lin.c21 int linear_output P1((buf), gsm_signal * buf)
Dtoast.c89 linear_output
/external/webrtc/modules/audio_processing/test/
Decho_control_mock.h32 AudioBuffer* linear_output,
/external/webrtc/modules/audio_processing/aec3/mock/
Dmock_echo_remover.h36 std::vector<std::vector<std::vector<float>>>* linear_output,
Dmock_block_processor.h31 std::vector<std::vector<std::vector<float>>>* linear_output,
/external/webrtc/api/audio/
Decho_control.h36 AudioBuffer* linear_output,
/external/libgsm/inc/
Dtoast.h111 extern int linear_input P((gsm_signal*)), linear_output P((gsm_signal *));
/external/tensorflow/tensorflow/python/keras/premade/
Dwide_deep.py98 linear_output = self.linear_model(linear_inputs)
106 output = nest.map_structure(lambda x, y: (x + y), linear_output, dnn_output)
/external/webrtc/modules/audio_processing/
Daudio_processing_impl.cc1480 rtc::ArrayView<std::array<float, 160>> linear_output) const { in GetLinearAecOutput()
1487 RTC_DCHECK_EQ(linear_output.size(), linear_aec_buffer->num_channels()); in GetLinearAecOutput()
1490 RTC_DCHECK_EQ(linear_output[ch].size(), linear_aec_buffer->num_frames()); in GetLinearAecOutput()
1495 linear_output[ch].begin()); in GetLinearAecOutput()
Daudio_processing_impl.h98 rtc::ArrayView<std::array<float, 160>> linear_output) const override;