HomeSort by relevance Sort by last modified time
    Searched refs:echo_path (Results 1 - 10 of 10) sorted by null

  /external/webrtc/src/modules/audio_processing/aecm/interface/
echo_control_mobile.h 177 * void* echo_path Pointer to the echo path to be set
186 const void* echo_path,
196 * void* echo_path Pointer to echo path
205 void* echo_path,
  /external/webrtc/src/modules/audio_processing/
echo_control_mobile_impl.h 44 virtual int SetEchoPath(const void* echo_path, size_t size_bytes);
45 virtual int GetEchoPath(void* echo_path, size_t size_bytes) const;
echo_control_mobile_impl.cc 196 int EchoControlMobileImpl::SetEchoPath(const void* echo_path,
199 if (echo_path == NULL) {
210 memcpy(external_echo_path_, echo_path, size_bytes);
215 int EchoControlMobileImpl::GetEchoPath(void* echo_path,
218 if (echo_path == NULL) {
231 if (WebRtcAecm_GetEchoPath(my_handle, echo_path, size_bytes) != 0) {
  /external/dbus/test/
test-shell-service.c 7 static const char* echo_path = "/org/freedesktop/TestSuite"; variable
44 if (!dbus_connection_get_object_path_data (connection, echo_path, (void **)&d))
155 echo_path,
162 if (!dbus_connection_get_object_path_data (connection, echo_path, &d))
test-service.c 375 static const char* echo_path = "/org/freedesktop/TestSuite" ; variable
457 echo_path,
464 if (!dbus_connection_get_object_path_data (connection, echo_path, &d))
  /external/webrtc/src/modules/audio_processing/interface/
audio_processing.h 384 virtual int SetEchoPath(const void* echo_path, size_t size_bytes) = 0;
385 virtual int GetEchoPath(void* echo_path, size_t size_bytes) const = 0;
  /external/webrtc/src/modules/audio_processing/aecm/
echo_control_mobile.c 644 const void* echo_path,
648 const WebRtc_Word16* echo_path_ptr = echo_path;
650 if ((aecm == NULL) || (echo_path == NULL))
673 void* echo_path,
677 WebRtc_Word16* echo_path_ptr = echo_path;
679 if ((aecm == NULL) || (echo_path == NULL))
aecm_core.h 260 // - echo_path : Pointer to the data that should initialize the echo path
265 void WebRtcAecm_InitEchoPathCore(AecmCore_t* aecm, const WebRtc_Word16* echo_path);
aecm_core.c 340 void WebRtcAecm_InitEchoPathCore(AecmCore_t* aecm, const WebRtc_Word16* echo_path)
345 memcpy(aecm->channelStored, echo_path, sizeof(WebRtc_Word16) * PART_LEN1);
347 memcpy(aecm->channelAdapt16, echo_path, sizeof(WebRtc_Word16) * PART_LEN1);
    [all...]
  /external/webrtc/src/modules/audio_processing/test/
process_test.cc 476 scoped_array<char> echo_path(new char[path_size]);
477 ASSERT_EQ(path_size, fread(echo_path.get(),
482 apm->echo_control_mobile()->SetEchoPath(echo_path.get(),
877 scoped_array<char> echo_path(new char[path_size]);
878 apm->echo_control_mobile()->GetEchoPath(echo_path.get(), path_size);
879 ASSERT_EQ(path_size, fwrite(echo_path.get(),
    [all...]

Completed in 93 milliseconds