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

  /external/webrtc/webrtc/modules/audio_processing/aecm/
echo_control_mobile.h 165 * void* echo_path Pointer to the echo path to be set
174 const void* echo_path,
184 * void* echo_path Pointer to echo path
193 void* echo_path,
echo_control_mobile.c 516 const void* echo_path,
520 const int16_t* echo_path_ptr = echo_path;
525 if (echo_path == NULL) {
544 void* echo_path,
548 int16_t* echo_path_ptr = echo_path;
553 if (echo_path == NULL) {
aecm_core.h 178 // - echo_path : Pointer to the data that should initialize the echo
184 void WebRtcAecm_InitEchoPathCore(AecmCore* aecm, const int16_t* echo_path);
aecm_core.c 283 void WebRtcAecm_InitEchoPathCore(AecmCore* aecm, const int16_t* echo_path) {
287 memcpy(aecm->channelStored, echo_path, sizeof(int16_t) * PART_LEN1);
289 memcpy(aecm->channelAdapt16, echo_path, sizeof(int16_t) * PART_LEN1);
    [all...]
  /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/webrtc/modules/audio_processing/
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;
echo_control_mobile_impl.cc 263 int EchoControlMobileImpl::SetEchoPath(const void* echo_path,
268 if (echo_path == NULL) {
279 memcpy(external_echo_path_, echo_path, size_bytes);
285 int EchoControlMobileImpl::GetEchoPath(void* echo_path,
288 if (echo_path == NULL) {
301 int32_t err = WebRtcAecm_GetEchoPath(my_handle, echo_path, size_bytes);
  /external/libvpx/libvpx/build/make/
msvs_common.sh 16 FIXPATH='echo_path'
30 echo_path() { function
  /external/webrtc/webrtc/modules/audio_processing/include/
mock_audio_processing.h 72 int(const void* echo_path, size_t size_bytes));
74 int(void* echo_path, size_t size_bytes));
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;
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/test/
process_test.cc 537 rtc::scoped_ptr<char[]> echo_path(new char[path_size]);
538 ASSERT_EQ(path_size, fread(echo_path.get(),
543 apm->echo_control_mobile()->SetEchoPath(echo_path.get(),
    [all...]

Completed in 389 milliseconds