├── .gitignore ├── .npmignore ├── .travis.yml ├── AUTHORS ├── CMakeLists.txt ├── LICENSE ├── Makefile.am ├── PATENTS ├── README.md ├── configure.ac ├── dist └── .gitkeep ├── docs ├── embedded.js ├── index.html ├── math.js └── vad.js ├── examples ├── nativescript │ ├── .editorconfig │ ├── App_Resources │ │ ├── Android │ │ │ ├── app.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── background.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-ldpi │ │ │ │ ├── background.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── background.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-nodpi │ │ │ │ └── splash_screen.xml │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── background.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── background.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── background.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ └── ic_launcher.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-v21 │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ │ ├── values-v29 │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── styles.xml │ │ └── iOS │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-1024.png │ │ │ │ ├── icon-20.png │ │ │ │ ├── icon-20@2x.png │ │ │ │ ├── icon-20@3x.png │ │ │ │ ├── icon-29.png │ │ │ │ ├── icon-29@2x.png │ │ │ │ ├── icon-29@3x.png │ │ │ │ ├── icon-40.png │ │ │ │ ├── icon-40@2x.png │ │ │ │ ├── icon-40@3x.png │ │ │ │ ├── icon-60@2x.png │ │ │ │ ├── icon-60@3x.png │ │ │ │ ├── icon-76.png │ │ │ │ ├── icon-76@2x.png │ │ │ │ └── icon-83.5@2x.png │ │ │ ├── Contents.json │ │ │ ├── LaunchScreen.AspectFill.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ │ ├── LaunchScreen-AspectFill@2x.png │ │ │ │ └── LaunchScreen-AspectFill@3x.png │ │ │ └── LaunchScreen.Center.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchScreen-Center.png │ │ │ │ ├── LaunchScreen-Center@2x.png │ │ │ │ └── LaunchScreen-Center@3x.png │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── build.xcconfig │ ├── nativescript.config.ts │ ├── package.json │ ├── references.d.ts │ ├── src │ │ ├── app.css │ │ ├── app │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ └── recorder.worker.ts │ │ ├── main.ts │ │ └── polyfills.ts │ ├── tsconfig.json │ └── webpack.config.js └── node │ ├── index.js │ ├── package-lock.json │ └── package.json ├── include └── fvad.h ├── lib ├── embedded.js ├── index.js ├── math.js └── vad.js ├── libfvad.pc.in ├── m4 └── .gitkeep ├── package.json ├── src ├── CMakeLists.txt ├── Makefile.am ├── common.h ├── fvad.c ├── signal_processing │ ├── division_operations.c │ ├── energy.c │ ├── get_scaling_square.c │ ├── resample_48khz.c │ ├── resample_by_2_internal.c │ ├── resample_by_2_internal.h │ ├── resample_fractional.c │ ├── signal_processing_library.h │ ├── spl_inl.c │ └── spl_inl.h └── vad │ ├── vad_core.c │ ├── vad_core.h │ ├── vad_filterbank.c │ ├── vad_filterbank.h │ ├── vad_gmm.c │ ├── vad_gmm.h │ ├── vad_sp.c │ └── vad_sp.h ├── tests ├── Makefile.am ├── data │ ├── audio_tiny16.wav │ ├── audio_tiny32.wav │ ├── audio_tiny48.wav │ ├── audio_tiny8.wav │ └── wavtest.expect ├── signal_processing_unittest.c ├── test_common.c ├── test_common.h ├── vad_core_unittest.c ├── vad_filterbank_unittest.c ├── vad_gmm_unittest.c ├── vad_sp_unittest.c ├── vad_unittest.c ├── vad_unittest.h └── wavtest.sh ├── tools ├── import-commit ├── import-paths └── import.sh └── typings └── index.d.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/Makefile.am -------------------------------------------------------------------------------- /PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/PATENTS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/README.md -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/configure.ac -------------------------------------------------------------------------------- /dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/embedded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/docs/embedded.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/docs/math.js -------------------------------------------------------------------------------- /docs/vad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/docs/vad.js -------------------------------------------------------------------------------- /examples/nativescript/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/.editorconfig -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/values-v21/colors.xml -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/values-v29/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/values-v29/styles.xml -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/Android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/Android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/nativescript/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /examples/nativescript/nativescript.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/nativescript.config.ts -------------------------------------------------------------------------------- /examples/nativescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/package.json -------------------------------------------------------------------------------- /examples/nativescript/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/references.d.ts -------------------------------------------------------------------------------- /examples/nativescript/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/src/app.css -------------------------------------------------------------------------------- /examples/nativescript/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /examples/nativescript/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/src/app/app.component.html -------------------------------------------------------------------------------- /examples/nativescript/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/src/app/app.component.ts -------------------------------------------------------------------------------- /examples/nativescript/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/src/app/app.module.ts -------------------------------------------------------------------------------- /examples/nativescript/src/app/recorder.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/src/app/recorder.worker.ts -------------------------------------------------------------------------------- /examples/nativescript/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/src/main.ts -------------------------------------------------------------------------------- /examples/nativescript/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/src/polyfills.ts -------------------------------------------------------------------------------- /examples/nativescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/tsconfig.json -------------------------------------------------------------------------------- /examples/nativescript/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/nativescript/webpack.config.js -------------------------------------------------------------------------------- /examples/node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/node/index.js -------------------------------------------------------------------------------- /examples/node/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/node/package-lock.json -------------------------------------------------------------------------------- /examples/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/examples/node/package.json -------------------------------------------------------------------------------- /include/fvad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/include/fvad.h -------------------------------------------------------------------------------- /lib/embedded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/lib/embedded.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/lib/math.js -------------------------------------------------------------------------------- /lib/vad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/lib/vad.js -------------------------------------------------------------------------------- /libfvad.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/libfvad.pc.in -------------------------------------------------------------------------------- /m4/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/package.json -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/src/common.h -------------------------------------------------------------------------------- /src/fvad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/src/fvad.c -------------------------------------------------------------------------------- /src/signal_processing/division_operations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/src/signal_processing/division_operations.c -------------------------------------------------------------------------------- /src/signal_processing/energy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/src/signal_processing/energy.c -------------------------------------------------------------------------------- /src/signal_processing/get_scaling_square.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/src/signal_processing/get_scaling_square.c -------------------------------------------------------------------------------- /src/signal_processing/resample_48khz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/src/signal_processing/resample_48khz.c -------------------------------------------------------------------------------- /src/signal_processing/resample_by_2_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/src/signal_processing/resample_by_2_internal.c -------------------------------------------------------------------------------- /src/signal_processing/resample_by_2_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/src/signal_processing/resample_by_2_internal.h -------------------------------------------------------------------------------- /src/signal_processing/resample_fractional.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/src/signal_processing/resample_fractional.c -------------------------------------------------------------------------------- /src/signal_processing/signal_processing_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/src/signal_processing/signal_processing_library.h -------------------------------------------------------------------------------- /src/signal_processing/spl_inl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/src/signal_processing/spl_inl.c -------------------------------------------------------------------------------- /src/signal_processing/spl_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/src/signal_processing/spl_inl.h -------------------------------------------------------------------------------- /src/vad/vad_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/src/vad/vad_core.c -------------------------------------------------------------------------------- /src/vad/vad_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/src/vad/vad_core.h -------------------------------------------------------------------------------- /src/vad/vad_filterbank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/src/vad/vad_filterbank.c -------------------------------------------------------------------------------- /src/vad/vad_filterbank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/src/vad/vad_filterbank.h -------------------------------------------------------------------------------- /src/vad/vad_gmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/src/vad/vad_gmm.c -------------------------------------------------------------------------------- /src/vad/vad_gmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/src/vad/vad_gmm.h -------------------------------------------------------------------------------- /src/vad/vad_sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/src/vad/vad_sp.c -------------------------------------------------------------------------------- /src/vad/vad_sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/src/vad/vad_sp.h -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/data/audio_tiny16.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/tests/data/audio_tiny16.wav -------------------------------------------------------------------------------- /tests/data/audio_tiny32.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/tests/data/audio_tiny32.wav -------------------------------------------------------------------------------- /tests/data/audio_tiny48.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/tests/data/audio_tiny48.wav -------------------------------------------------------------------------------- /tests/data/audio_tiny8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/tests/data/audio_tiny8.wav -------------------------------------------------------------------------------- /tests/data/wavtest.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/tests/data/wavtest.expect -------------------------------------------------------------------------------- /tests/signal_processing_unittest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/tests/signal_processing_unittest.c -------------------------------------------------------------------------------- /tests/test_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/tests/test_common.c -------------------------------------------------------------------------------- /tests/test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/tests/test_common.h -------------------------------------------------------------------------------- /tests/vad_core_unittest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/tests/vad_core_unittest.c -------------------------------------------------------------------------------- /tests/vad_filterbank_unittest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/tests/vad_filterbank_unittest.c -------------------------------------------------------------------------------- /tests/vad_gmm_unittest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/tests/vad_gmm_unittest.c -------------------------------------------------------------------------------- /tests/vad_sp_unittest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/tests/vad_sp_unittest.c -------------------------------------------------------------------------------- /tests/vad_unittest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/tests/vad_unittest.c -------------------------------------------------------------------------------- /tests/vad_unittest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/tests/vad_unittest.h -------------------------------------------------------------------------------- /tests/wavtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/tests/wavtest.sh -------------------------------------------------------------------------------- /tools/import-commit: -------------------------------------------------------------------------------- 1 | ebd9abc1a23db8fe9acfd163155e0f9bc544b10e 2 | -------------------------------------------------------------------------------- /tools/import-paths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/tools/import-paths -------------------------------------------------------------------------------- /tools/import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/tools/import.sh -------------------------------------------------------------------------------- /typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OzymandiasTheGreat/libfvad-wasm/HEAD/typings/index.d.ts --------------------------------------------------------------------------------