Basic AudioDSP add-on for [Kodi] (http://kodi.tv)
This add-on contains basic signal processing parts to handle speaker delays, channel related volume amplification.
Furthermore it supports Dolby Pro Logic II multichannel downmix to stereo, which is only available if Kodi's audio engine ActiveAE is configured for 2 channel output (stereo).
This add-on is still in development to increase the amount of features e.g. speaker position changes.
When building the addon you have to use the correct branch depending on which version of Kodi you're building against.
For example, if you're building the Jarvis branch of Kodi you should checkout the Jarvis branch of this repository.
Addon releases are also tagged regularly.
For further instructions replace {addon-id} and {org} with the repository- and the Github organisation-name.
E.g. https://github.com/kodi-adsp/adsp.basic.git results in {addon-id}=adsp.basic and {org}=kodi-adsp
With the following instructions the add-on files will be placed in ../../xbmc/addons. Consequently this adds a system add-on, which can be used direclty if you build Kodi from source.
git clone https://github.com/xbmc/xbmc.gitgit clone https://github.com/{org}/{addon-id}.gitcd {addon-id} && mkdir build && cd buildcmake -DADDONS_TO_BUILD={addon-id} -DADDON_SRC_PREFIX=../.. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=../../xbmc/addons -DPACKAGE_ZIP=1 ../../xbmc/project/cmake/addonsmake
Use the visual studio command line or run call "%VS120COMNTOOLS%..\..\VC\bin\vcvars32.bat"
git clone https://github.com/xbmc/xbmc.gitgit clone https://github.com/{org}/{addon-id}.gitcd {addon-id} && mkdir build && cd buildcmake -G "NMake Makefiles" -DADDONS_TO_BUILD={addon-id} -DADDON_SRC_PREFIX=../.. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=../../xbmc/addons -DPACKAGE_ZIP=1 ../../xbmc/project/cmake/addonscmake --build "%cd%" --target "{addon-id}"
- [Kodi's PVR user support] (http://forum.kodi.tv/forumdisplay.php?fid=167)
- [General binary add-on development] (http://forum.kodi.tv/forumdisplay.php?fid=26)
- [Kodi Core development support] (http://forum.kodi.tv/forumdisplay.php?fid=93)
- [Kodi AudioDSP development support] (http://forum.kodi.tv/forumdisplay.php?fid=235)
- [Kodi Screensavers and Visualisations development support] (http://forum.kodi.tv/forumdisplay.php?fid=38)
- [Kodi PVR development support] (http://forum.kodi.tv/forumdisplay.php?fid=136)