Searched refs:echo_path (Results 1 – 10 of 10) sorted by relevance
/external/webrtc/webrtc/modules/audio_processing/ |
D | echo_control_mobile_impl.cc | 263 int EchoControlMobileImpl::SetEchoPath(const void* echo_path, in SetEchoPath() argument 268 if (echo_path == NULL) { in SetEchoPath() 279 memcpy(external_echo_path_, echo_path, size_bytes); in SetEchoPath() 285 int EchoControlMobileImpl::GetEchoPath(void* echo_path, in GetEchoPath() argument 288 if (echo_path == NULL) { in GetEchoPath() 301 int32_t err = WebRtcAecm_GetEchoPath(my_handle, echo_path, size_bytes); in GetEchoPath()
|
D | echo_control_mobile_impl.h | 52 int SetEchoPath(const void* echo_path, size_t size_bytes) override; 53 int GetEchoPath(void* echo_path, size_t size_bytes) const override;
|
/external/webrtc/webrtc/modules/audio_processing/aecm/ |
D | echo_control_mobile.h | 174 const void* echo_path, 193 void* echo_path,
|
D | echo_control_mobile.c | 516 const void* echo_path, in WebRtcAecm_InitEchoPath() argument 520 const int16_t* echo_path_ptr = echo_path; in WebRtcAecm_InitEchoPath() 525 if (echo_path == NULL) { in WebRtcAecm_InitEchoPath() 544 void* echo_path, in WebRtcAecm_GetEchoPath() argument 548 int16_t* echo_path_ptr = echo_path; in WebRtcAecm_GetEchoPath() 553 if (echo_path == NULL) { in WebRtcAecm_GetEchoPath()
|
D | aecm_core.h | 184 void WebRtcAecm_InitEchoPathCore(AecmCore* aecm, const int16_t* echo_path);
|
D | aecm_core.c | 283 void WebRtcAecm_InitEchoPathCore(AecmCore* aecm, const int16_t* echo_path) { in WebRtcAecm_InitEchoPathCore() argument 287 memcpy(aecm->channelStored, echo_path, sizeof(int16_t) * PART_LEN1); in WebRtcAecm_InitEchoPathCore() 289 memcpy(aecm->channelAdapt16, echo_path, sizeof(int16_t) * PART_LEN1); in WebRtcAecm_InitEchoPathCore()
|
/external/libvpx/libvpx/build/make/ |
D | msvs_common.sh | 30 echo_path() { function
|
/external/webrtc/webrtc/modules/audio_processing/include/ |
D | mock_audio_processing.h | 72 int(const void* echo_path, size_t size_bytes)); 74 int(void* echo_path, size_t size_bytes));
|
D | audio_processing.h | 747 virtual int SetEchoPath(const void* echo_path, size_t size_bytes) = 0; 748 virtual int GetEchoPath(void* echo_path, size_t size_bytes) const = 0;
|
/external/webrtc/webrtc/modules/audio_processing/test/ |
D | process_test.cc | 537 rtc::scoped_ptr<char[]> echo_path(new char[path_size]); in void_main() local 538 ASSERT_EQ(path_size, fread(echo_path.get(), in void_main() 543 apm->echo_control_mobile()->SetEchoPath(echo_path.get(), in void_main() 1064 rtc::scoped_ptr<char[]> echo_path(new char[path_size]); in void_main() local 1065 apm->echo_control_mobile()->GetEchoPath(echo_path.get(), path_size); in void_main() 1066 ASSERT_EQ(path_size, fwrite(echo_path.get(), in void_main()
|