├── .gitattributes ├── .gitignore ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── boot-completed.sh ├── changelog.md ├── common ├── addon │ └── Volume-Key-Selector │ │ ├── README.md │ │ ├── install.sh │ │ └── tools │ │ ├── arm │ │ └── keycheck │ │ └── x86 │ │ └── keycheck ├── files │ ├── JamesDSP │ │ ├── Convolver │ │ │ ├── CorredHRTFCrossfeed.wav │ │ │ ├── CorredHRTF_Surround1.wav │ │ │ ├── CorredHRTF_Surround2.wav │ │ │ ├── SwapChannels.wav │ │ │ └── binChurch.wav │ │ ├── DDC │ │ │ ├── Butterworth.vdc │ │ │ └── mh750.vdc │ │ └── liveprog │ │ │ ├── autopeakfilter.eel │ │ │ ├── dc_remove.eel │ │ │ ├── firFilter.eel │ │ │ ├── fractionalDelayline.eel │ │ │ ├── hadamVerb.eel │ │ │ ├── simpleFDNReverb.eel │ │ │ ├── stft-filter.eel │ │ │ ├── stftCentreCut.eel │ │ │ └── stftPitchShifter.eel │ ├── JamesDSPManager.apk │ ├── JamesDSPManagerThePBone.apk │ ├── arm │ │ └── libjamesdsp.so │ ├── huawei │ │ └── libjamesdsp.so │ └── x86 │ │ └── libjamesdsp.so ├── functions.sh └── install.sh ├── customize.sh ├── install.zip ├── module.prop ├── service.sh ├── uninstall.sh └── update.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __MACOSX 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/README.md -------------------------------------------------------------------------------- /boot-completed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/boot-completed.sh -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/changelog.md -------------------------------------------------------------------------------- /common/addon/Volume-Key-Selector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/addon/Volume-Key-Selector/README.md -------------------------------------------------------------------------------- /common/addon/Volume-Key-Selector/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/addon/Volume-Key-Selector/install.sh -------------------------------------------------------------------------------- /common/addon/Volume-Key-Selector/tools/arm/keycheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/addon/Volume-Key-Selector/tools/arm/keycheck -------------------------------------------------------------------------------- /common/addon/Volume-Key-Selector/tools/x86/keycheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/addon/Volume-Key-Selector/tools/x86/keycheck -------------------------------------------------------------------------------- /common/files/JamesDSP/Convolver/CorredHRTFCrossfeed.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/files/JamesDSP/Convolver/CorredHRTFCrossfeed.wav -------------------------------------------------------------------------------- /common/files/JamesDSP/Convolver/CorredHRTF_Surround1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/files/JamesDSP/Convolver/CorredHRTF_Surround1.wav -------------------------------------------------------------------------------- /common/files/JamesDSP/Convolver/CorredHRTF_Surround2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/files/JamesDSP/Convolver/CorredHRTF_Surround2.wav -------------------------------------------------------------------------------- /common/files/JamesDSP/Convolver/SwapChannels.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/files/JamesDSP/Convolver/SwapChannels.wav -------------------------------------------------------------------------------- /common/files/JamesDSP/Convolver/binChurch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/files/JamesDSP/Convolver/binChurch.wav -------------------------------------------------------------------------------- /common/files/JamesDSP/DDC/Butterworth.vdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/files/JamesDSP/DDC/Butterworth.vdc -------------------------------------------------------------------------------- /common/files/JamesDSP/DDC/mh750.vdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/files/JamesDSP/DDC/mh750.vdc -------------------------------------------------------------------------------- /common/files/JamesDSP/liveprog/autopeakfilter.eel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/files/JamesDSP/liveprog/autopeakfilter.eel -------------------------------------------------------------------------------- /common/files/JamesDSP/liveprog/dc_remove.eel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/files/JamesDSP/liveprog/dc_remove.eel -------------------------------------------------------------------------------- /common/files/JamesDSP/liveprog/firFilter.eel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/files/JamesDSP/liveprog/firFilter.eel -------------------------------------------------------------------------------- /common/files/JamesDSP/liveprog/fractionalDelayline.eel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/files/JamesDSP/liveprog/fractionalDelayline.eel -------------------------------------------------------------------------------- /common/files/JamesDSP/liveprog/hadamVerb.eel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/files/JamesDSP/liveprog/hadamVerb.eel -------------------------------------------------------------------------------- /common/files/JamesDSP/liveprog/simpleFDNReverb.eel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/files/JamesDSP/liveprog/simpleFDNReverb.eel -------------------------------------------------------------------------------- /common/files/JamesDSP/liveprog/stft-filter.eel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/files/JamesDSP/liveprog/stft-filter.eel -------------------------------------------------------------------------------- /common/files/JamesDSP/liveprog/stftCentreCut.eel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/files/JamesDSP/liveprog/stftCentreCut.eel -------------------------------------------------------------------------------- /common/files/JamesDSP/liveprog/stftPitchShifter.eel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/files/JamesDSP/liveprog/stftPitchShifter.eel -------------------------------------------------------------------------------- /common/files/JamesDSPManager.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/files/JamesDSPManager.apk -------------------------------------------------------------------------------- /common/files/JamesDSPManagerThePBone.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/files/JamesDSPManagerThePBone.apk -------------------------------------------------------------------------------- /common/files/arm/libjamesdsp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/files/arm/libjamesdsp.so -------------------------------------------------------------------------------- /common/files/huawei/libjamesdsp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/files/huawei/libjamesdsp.so -------------------------------------------------------------------------------- /common/files/x86/libjamesdsp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/files/x86/libjamesdsp.so -------------------------------------------------------------------------------- /common/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/functions.sh -------------------------------------------------------------------------------- /common/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/common/install.sh -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/customize.sh -------------------------------------------------------------------------------- /install.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/install.zip -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/module.prop -------------------------------------------------------------------------------- /service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/service.sh -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/uninstall.sh -------------------------------------------------------------------------------- /update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/JamesDSPManager/HEAD/update.json --------------------------------------------------------------------------------