├── .gitattributes ├── .gitignore ├── LISENCE ├── README.md ├── android-aec.jar ├── audio ├── cn │ ├── cn-00-raw-pcm-16000Hz-16bit-mono.pcm │ ├── cn-01-raw-pcm.jpg │ ├── cn-02-10ms-echo-tail-output.jpg │ └── cn-03-1ms-echo-tail-output.jpg └── en │ ├── en-00-raw-pcm-16000Hz-16bit-mono.pcm │ ├── en-01-raw-pcm.jpg │ ├── en-02-10ms-echo-tail-output.jpg │ └── en-03-1ms-echo-tail-output.jpg ├── eclipse-project ├── AndroidManifest.xml ├── ic_launcher-web.png ├── javadoc │ ├── allclasses-frame.html │ ├── allclasses-noframe.html │ ├── com │ │ └── android │ │ │ └── webrtc │ │ │ └── audio │ │ │ ├── MobileAEC.AecmConfig.html │ │ │ ├── MobileAEC.AggressiveMode.html │ │ │ ├── MobileAEC.SamplingFrequency.html │ │ │ ├── MobileAEC.html │ │ │ ├── class-use │ │ │ ├── MobileAEC.AecmConfig.html │ │ │ ├── MobileAEC.AggressiveMode.html │ │ │ ├── MobileAEC.SamplingFrequency.html │ │ │ └── MobileAEC.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── package-use.html │ ├── constant-values.html │ ├── deprecated-list.html │ ├── help-doc.html │ ├── index-files │ │ ├── index-1.html │ │ ├── index-2.html │ │ ├── index-3.html │ │ ├── index-4.html │ │ ├── index-5.html │ │ ├── index-6.html │ │ ├── index-7.html │ │ ├── index-8.html │ │ └── index-9.html │ ├── index.html │ ├── overview-tree.html │ ├── package-list │ ├── resources │ │ └── inherit.gif │ └── stylesheet.css ├── jni │ ├── Android.mk │ ├── Application.mk │ └── aecm │ │ ├── Android.mk │ │ ├── aecm_core.c │ │ ├── aecm_core.h │ │ ├── aecm_defines.h │ │ ├── aecm_wrapper.c │ │ ├── compile_assert.h │ │ ├── compile_assert_c.h │ │ ├── complex_bit_reverse.c │ │ ├── complex_fft.c │ │ ├── complex_fft_tables.h │ │ ├── cpu_features_wrapper.h │ │ ├── cross_correlation.c │ │ ├── delay_estimator.c │ │ ├── delay_estimator.h │ │ ├── delay_estimator_internal.h │ │ ├── delay_estimator_wrapper.c │ │ ├── delay_estimator_wrapper.h │ │ ├── division_operations.c │ │ ├── downsample_fast.c │ │ ├── echo_control_mobile.c │ │ ├── echo_control_mobile.h │ │ ├── min_max_operations.c │ │ ├── randomization_functions.c │ │ ├── real_fft.c │ │ ├── real_fft.h │ │ ├── ring_buffer.c │ │ ├── ring_buffer.h │ │ ├── signal_processing_library.h │ │ ├── spl_init.c │ │ ├── spl_inl.h │ │ ├── spl_sqrt_floor.c │ │ ├── typedefs.h │ │ └── vector_scaling_operations.c ├── libs │ ├── android-support-v4.jar │ └── armeabi │ │ └── libwebrtc_aecm.so ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── activity_main.xml │ ├── menu │ │ └── activity_main.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ ├── android │ └── webrtc │ │ └── audio │ │ └── MobileAEC.java │ └── billhoo │ └── android │ └── aec │ └── demo │ └── DemoActivity.java └── libwebrtc_aecm.so /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/.gitignore -------------------------------------------------------------------------------- /LISENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/LISENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/README.md -------------------------------------------------------------------------------- /android-aec.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/android-aec.jar -------------------------------------------------------------------------------- /audio/cn/cn-00-raw-pcm-16000Hz-16bit-mono.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/audio/cn/cn-00-raw-pcm-16000Hz-16bit-mono.pcm -------------------------------------------------------------------------------- /audio/cn/cn-01-raw-pcm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/audio/cn/cn-01-raw-pcm.jpg -------------------------------------------------------------------------------- /audio/cn/cn-02-10ms-echo-tail-output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/audio/cn/cn-02-10ms-echo-tail-output.jpg -------------------------------------------------------------------------------- /audio/cn/cn-03-1ms-echo-tail-output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/audio/cn/cn-03-1ms-echo-tail-output.jpg -------------------------------------------------------------------------------- /audio/en/en-00-raw-pcm-16000Hz-16bit-mono.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/audio/en/en-00-raw-pcm-16000Hz-16bit-mono.pcm -------------------------------------------------------------------------------- /audio/en/en-01-raw-pcm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/audio/en/en-01-raw-pcm.jpg -------------------------------------------------------------------------------- /audio/en/en-02-10ms-echo-tail-output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/audio/en/en-02-10ms-echo-tail-output.jpg -------------------------------------------------------------------------------- /audio/en/en-03-1ms-echo-tail-output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/audio/en/en-03-1ms-echo-tail-output.jpg -------------------------------------------------------------------------------- /eclipse-project/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/AndroidManifest.xml -------------------------------------------------------------------------------- /eclipse-project/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/ic_launcher-web.png -------------------------------------------------------------------------------- /eclipse-project/javadoc/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/allclasses-frame.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/allclasses-noframe.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/com/android/webrtc/audio/MobileAEC.AecmConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/com/android/webrtc/audio/MobileAEC.AecmConfig.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/com/android/webrtc/audio/MobileAEC.AggressiveMode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/com/android/webrtc/audio/MobileAEC.AggressiveMode.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/com/android/webrtc/audio/MobileAEC.SamplingFrequency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/com/android/webrtc/audio/MobileAEC.SamplingFrequency.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/com/android/webrtc/audio/MobileAEC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/com/android/webrtc/audio/MobileAEC.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/com/android/webrtc/audio/class-use/MobileAEC.AecmConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/com/android/webrtc/audio/class-use/MobileAEC.AecmConfig.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/com/android/webrtc/audio/class-use/MobileAEC.AggressiveMode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/com/android/webrtc/audio/class-use/MobileAEC.AggressiveMode.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/com/android/webrtc/audio/class-use/MobileAEC.SamplingFrequency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/com/android/webrtc/audio/class-use/MobileAEC.SamplingFrequency.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/com/android/webrtc/audio/class-use/MobileAEC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/com/android/webrtc/audio/class-use/MobileAEC.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/com/android/webrtc/audio/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/com/android/webrtc/audio/package-frame.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/com/android/webrtc/audio/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/com/android/webrtc/audio/package-summary.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/com/android/webrtc/audio/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/com/android/webrtc/audio/package-tree.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/com/android/webrtc/audio/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/com/android/webrtc/audio/package-use.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/constant-values.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/deprecated-list.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/help-doc.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/index-files/index-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/index-files/index-1.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/index-files/index-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/index-files/index-2.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/index-files/index-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/index-files/index-3.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/index-files/index-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/index-files/index-4.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/index-files/index-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/index-files/index-5.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/index-files/index-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/index-files/index-6.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/index-files/index-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/index-files/index-7.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/index-files/index-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/index-files/index-8.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/index-files/index-9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/index-files/index-9.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/index.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/overview-tree.html -------------------------------------------------------------------------------- /eclipse-project/javadoc/package-list: -------------------------------------------------------------------------------- 1 | com.android.webrtc.audio 2 | -------------------------------------------------------------------------------- /eclipse-project/javadoc/resources/inherit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/resources/inherit.gif -------------------------------------------------------------------------------- /eclipse-project/javadoc/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/javadoc/stylesheet.css -------------------------------------------------------------------------------- /eclipse-project/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /eclipse-project/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/Application.mk -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/Android.mk -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/aecm_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/aecm_core.c -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/aecm_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/aecm_core.h -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/aecm_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/aecm_defines.h -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/aecm_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/aecm_wrapper.c -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/compile_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/compile_assert.h -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/compile_assert_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/compile_assert_c.h -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/complex_bit_reverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/complex_bit_reverse.c -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/complex_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/complex_fft.c -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/complex_fft_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/complex_fft_tables.h -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/cpu_features_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/cpu_features_wrapper.h -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/cross_correlation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/cross_correlation.c -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/delay_estimator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/delay_estimator.c -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/delay_estimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/delay_estimator.h -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/delay_estimator_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/delay_estimator_internal.h -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/delay_estimator_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/delay_estimator_wrapper.c -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/delay_estimator_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/delay_estimator_wrapper.h -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/division_operations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/division_operations.c -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/downsample_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/downsample_fast.c -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/echo_control_mobile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/echo_control_mobile.c -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/echo_control_mobile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/echo_control_mobile.h -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/min_max_operations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/min_max_operations.c -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/randomization_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/randomization_functions.c -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/real_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/real_fft.c -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/real_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/real_fft.h -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/ring_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/ring_buffer.c -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/ring_buffer.h -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/signal_processing_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/signal_processing_library.h -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/spl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/spl_init.c -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/spl_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/spl_inl.h -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/spl_sqrt_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/spl_sqrt_floor.c -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/typedefs.h -------------------------------------------------------------------------------- /eclipse-project/jni/aecm/vector_scaling_operations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/jni/aecm/vector_scaling_operations.c -------------------------------------------------------------------------------- /eclipse-project/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/libs/android-support-v4.jar -------------------------------------------------------------------------------- /eclipse-project/libs/armeabi/libwebrtc_aecm.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/libs/armeabi/libwebrtc_aecm.so -------------------------------------------------------------------------------- /eclipse-project/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/lint.xml -------------------------------------------------------------------------------- /eclipse-project/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/proguard-project.txt -------------------------------------------------------------------------------- /eclipse-project/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/project.properties -------------------------------------------------------------------------------- /eclipse-project/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /eclipse-project/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /eclipse-project/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /eclipse-project/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /eclipse-project/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/res/layout/activity_main.xml -------------------------------------------------------------------------------- /eclipse-project/res/menu/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/res/menu/activity_main.xml -------------------------------------------------------------------------------- /eclipse-project/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/res/values-v11/styles.xml -------------------------------------------------------------------------------- /eclipse-project/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/res/values-v14/styles.xml -------------------------------------------------------------------------------- /eclipse-project/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/res/values/strings.xml -------------------------------------------------------------------------------- /eclipse-project/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/res/values/styles.xml -------------------------------------------------------------------------------- /eclipse-project/src/com/android/webrtc/audio/MobileAEC.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/src/com/android/webrtc/audio/MobileAEC.java -------------------------------------------------------------------------------- /eclipse-project/src/com/billhoo/android/aec/demo/DemoActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/eclipse-project/src/com/billhoo/android/aec/demo/DemoActivity.java -------------------------------------------------------------------------------- /libwebrtc_aecm.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhc180/webrtc-based-android-aecm/HEAD/libwebrtc_aecm.so --------------------------------------------------------------------------------