Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/audio_processing/
Decho_control_mobile_impl.cc263 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()
Decho_control_mobile_impl.h52 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/
Decho_control_mobile.h174 const void* echo_path,
193 void* echo_path,
Decho_control_mobile.c516 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()
Daecm_core.c283 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()
Daecm_core.h184 void WebRtcAecm_InitEchoPathCore(AecmCore* aecm, const int16_t* echo_path);
/external/webrtc/webrtc/modules/audio_processing/include/
Dmock_audio_processing.h72 int(const void* echo_path, size_t size_bytes));
74 int(void* echo_path, size_t size_bytes));
Daudio_processing.h747 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/libvpx/libvpx/build/make/
Dmsvs_common.sh30 echo_path() { function
/external/webrtc/webrtc/modules/audio_processing/test/
Dprocess_test.cc537 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()