├── CHANGELOG.rst ├── LICENSE.txt ├── Makefile ├── README.rst ├── app_slicekit_biquad ├── .cproject ├── .project ├── .tmpproject-e ├── .xproject ├── EULA ├── LICENSING ├── Makefile ├── README.rst ├── VERSION ├── __MACOSX │ └── sw_i2s_loop │ │ └── ._.DS_Store ├── app_description └── src │ ├── app_conf.h │ ├── app_global.h │ ├── audio_io.h │ ├── audio_io.xc │ ├── codec.h │ ├── codec.xc │ ├── descrip.txt │ ├── dsp_biquad.h │ ├── dsp_biquad.xc │ ├── i2s_master_conf.h │ ├── main.h │ ├── main.xc │ ├── module_dsp_biquad_conf.h │ └── xa_sk_audio_1v0.h ├── app_slicekit_dsp_effects ├── .cproject ├── .project ├── .tmpproject-e ├── .xproject ├── EULA ├── LICENSING ├── Makefile ├── README.rst ├── VERSION ├── app_description └── src │ ├── app_conf.h │ ├── app_global.h │ ├── audio_io.h │ ├── audio_io.xc │ ├── codec.h │ ├── codec.xc │ ├── dsp_biquad.h │ ├── dsp_biquad.xc │ ├── dsp_effects.h │ ├── dsp_effects.xc │ ├── dsp_loudness.h │ ├── dsp_loudness.xc │ ├── gp_io.h │ ├── gp_io.xc │ ├── i2s_master_conf.h │ ├── main.h │ ├── main.xc │ ├── module_dsp_biquad_conf.h │ ├── module_dsp_long_delay_conf.h │ ├── module_dsp_long_reverb_conf.h │ ├── module_dsp_loudness_conf.h │ ├── sdram_conf.h │ ├── sdram_io.h │ ├── sdram_io.xc │ └── xa_sk_audio_1v0.h ├── app_slicekit_long_delay ├── .cproject ├── .project ├── .tmpproject-e ├── .xproject ├── EULA ├── LICENSING ├── Makefile ├── README.rst ├── VERSION ├── __MACOSX │ └── sw_i2s_loop │ │ └── ._.DS_Store ├── app_description └── src │ ├── app_conf.h │ ├── app_global.h │ ├── audio_io.h │ ├── audio_io.xc │ ├── codec.h │ ├── codec.xc │ ├── dsp_sdram_delay.h │ ├── dsp_sdram_delay.xc │ ├── i2s_master_conf.h │ ├── main.h │ ├── main.xc │ ├── module_dsp_long_delay_conf.h │ ├── sdram_conf.h │ ├── sdram_io.h │ ├── sdram_io.xc │ └── xa_sk_audio_1v0.h ├── app_slicekit_long_reverb ├── .cproject ├── .project ├── .tmpproject-e ├── .xproject ├── EULA ├── LICENSING ├── Makefile ├── README.rst ├── VERSION ├── __MACOSX │ └── sw_i2s_loop │ │ └── ._.DS_Store ├── app_description └── src │ ├── app_conf.h │ ├── app_global.h │ ├── audio_io.h │ ├── audio_io.xc │ ├── codec.h │ ├── codec.xc │ ├── dsp_biquad.h │ ├── dsp_biquad.xc │ ├── dsp_loudness.h │ ├── dsp_loudness.xc │ ├── dsp_sdram_reverb.h │ ├── dsp_sdram_reverb.xc │ ├── i2s_master_conf.h │ ├── main.h │ ├── main.xc │ ├── module_dsp_biquad_conf.h │ ├── module_dsp_long_delay_conf.h │ ├── module_dsp_long_reverb_conf.h │ ├── module_dsp_loudness_conf.h │ ├── sdram_conf.h │ ├── sdram_io.h │ ├── sdram_io.xc │ └── xa_sk_audio_1v0.h ├── app_slicekit_loudness ├── .cproject ├── .project ├── .tmpproject-e ├── .xproject ├── EULA ├── LICENSING ├── Makefile ├── README.rst ├── VERSION ├── __MACOSX │ └── sw_i2s_loop │ │ └── ._.DS_Store ├── app_description └── src │ ├── app_conf.h │ ├── app_global.h │ ├── audio_io.h │ ├── audio_io.xc │ ├── codec.h │ ├── codec.xc │ ├── descrip.txt │ ├── dsp_loudness.h │ ├── dsp_loudness.xc │ ├── i2s_master_conf.h │ ├── main.h │ ├── main.xc │ ├── module_dsp_loudness_conf.h │ └── xa_sk_audio_1v0.h ├── app_slicekit_short_delay ├── .cproject ├── .project ├── .tmpproject-e ├── .xproject ├── EULA ├── LICENSING ├── Makefile ├── README.rst ├── VERSION ├── __MACOSX │ └── sw_i2s_loop │ │ └── ._.DS_Store ├── app_description └── src │ ├── app_conf.h │ ├── app_global.h │ ├── audio_io.h │ ├── audio_io.xc │ ├── codec.h │ ├── codec.xc │ ├── dsp_delay.h │ ├── dsp_delay.xc │ ├── i2s_master_conf.h │ ├── main.h │ ├── main.xc │ ├── module_dsp_short_delay_conf.h │ └── xa_sk_audio_1v0.h ├── app_slicekit_short_reverb ├── .cproject ├── .project ├── .tmpproject-e ├── .xproject ├── EULA ├── LICENSING ├── Makefile ├── README.rst ├── VERSION ├── __MACOSX │ └── sw_i2s_loop │ │ └── ._.DS_Store ├── app_description └── src │ ├── app_conf.h │ ├── app_global.h │ ├── audio_io.h │ ├── audio_io.xc │ ├── codec.h │ ├── codec.xc │ ├── dsp_biquad.h │ ├── dsp_biquad.xc │ ├── dsp_loudness.h │ ├── dsp_loudness.xc │ ├── dsp_reverb.h │ ├── dsp_reverb.xc │ ├── i2s_master_conf.h │ ├── main.h │ ├── main.xc │ ├── module_dsp_biquad_conf.h │ ├── module_dsp_loudness_conf.h │ ├── module_dsp_short_delay_conf.h │ ├── module_dsp_short_reverb_conf.h │ └── xa_sk_audio_1v0.h ├── app_slicekit_template ├── .cproject ├── .project ├── .tmpproject-e ├── .xproject ├── EULA ├── LICENSING ├── Makefile ├── README.rst ├── VERSION ├── __MACOSX │ └── sw_i2s_loop │ │ └── ._.DS_Store ├── app_description └── src │ ├── app_conf.h │ ├── app_global.h │ ├── audio_io.h │ ├── audio_io.xc │ ├── codec.h │ ├── codec.xc │ ├── dsp_template.h │ ├── dsp_template.xc │ ├── i2s_master_conf.h │ ├── main.h │ ├── main.xc │ ├── module_dsp_template_conf.h │ └── xa_sk_audio_1v0.h ├── app_slicekit_vocoder ├── .cproject ├── .project ├── .xproject ├── Makefile ├── README.rst ├── app_description └── src │ ├── app_conf.h │ ├── app_global.h │ ├── audio_io.h │ ├── audio_io.xc │ ├── codec.h │ ├── codec.xc │ ├── dsp_channel_vocoder.h │ ├── dsp_channel_vocoder.xc │ ├── dsp_vocoder_control.h │ ├── dsp_vocoder_control.xc │ ├── i2s_master_conf.h │ ├── main.h │ ├── main.xc │ ├── module_dsp_vocoder_conf.h │ └── xa_sk_audio_1v0.h ├── doc_quickstart ├── .cproject ├── .project ├── .xproject ├── Makefile ├── images │ ├── SliceKit_MemorySliceSqua_Audio.jpg │ ├── SliceKit_MemorySliceTria_Audio.jpg │ ├── hardware_setup.jpg │ └── hardware_setup_no_sdram.jpg ├── index.rst ├── quickstart_biquad.rst ├── quickstart_long_delay.rst ├── quickstart_loudness.rst ├── quickstart_reverb_long.rst ├── quickstart_reverb_short.rst └── quickstart_short_delay.rst ├── module_dsp_biquad ├── .cproject ├── .makefile ├── .project ├── .xproject ├── EULA ├── README.rst ├── VERSION ├── doc │ ├── Makefile │ ├── api.rst │ ├── hw.rst │ ├── index.rst │ ├── overview.rst │ ├── programming.rst │ ├── resources.rst │ └── seealso.xml ├── module_build_info ├── module_description ├── module_dsp_biquad.metainfo └── src │ ├── biquad_simple.c │ ├── biquad_simple.h │ ├── descrip.txt │ └── module_dsp_biquad_example_conf.h ├── module_dsp_long_delay ├── .cproject ├── .makefile ├── .project ├── .xproject ├── EULA ├── README.rst ├── VERSION ├── doc │ ├── Makefile │ ├── api.rst │ ├── hw.rst │ ├── index.rst │ ├── overview.rst │ ├── programming.rst │ ├── resources.rst │ └── seealso.xml ├── module_build_info ├── module_description ├── module_dsp_long_delay.metainfo └── src │ ├── descrip.txt │ ├── module_dsp_long_delay_example_conf.h │ ├── sdram_conf_example.h │ ├── sdram_delay.c │ └── sdram_delay.h ├── module_dsp_long_reverb ├── .cproject ├── .makefile ├── .project ├── .xproject ├── EULA ├── README.rst ├── VERSION ├── doc │ ├── Makefile │ ├── api.rst │ ├── hw.rst │ ├── index.rst │ ├── overview.rst │ ├── programming.rst │ ├── resources.rst │ └── seealso.xml ├── module_build_info ├── module_description ├── module_dsp_long_reverb.metainfo └── src │ ├── descrip.txt │ ├── module_dsp_long_reverb_example_conf.h │ ├── sdram_reverb.c │ └── sdram_reverb.h ├── module_dsp_loudness ├── .cproject ├── .makefile ├── .project ├── .xproject ├── EULA ├── README.rst ├── VERSION ├── doc │ ├── Makefile │ ├── api.rst │ ├── hw.rst │ ├── index.rst │ ├── overview.rst │ ├── programming.rst │ ├── resources.rst │ └── seealso.xml ├── module_build_info ├── module_description ├── module_dsp_loudness.metainfo └── src │ ├── descrip.txt │ ├── module_dsp_loudness_example_conf.h │ ├── non_linear_gain.c │ └── non_linear_gain.h ├── module_dsp_short_delay ├── .cproject ├── .makefile ├── .project ├── .xproject ├── EULA ├── README.rst ├── VERSION ├── doc │ ├── Makefile │ ├── api.rst │ ├── hw.rst │ ├── index.rst │ ├── overview.rst │ ├── programming.rst │ ├── resources.rst │ └── seealso.xml ├── module_build_info ├── module_description ├── module_dsp_short_delay.metainfo └── src │ ├── delay_line.c │ ├── delay_line.h │ ├── descrip.txt │ └── module_dsp_short_delay_example_conf.h ├── module_dsp_short_reverb ├── .cproject ├── .makefile ├── .project ├── .xproject ├── EULA ├── README.rst ├── VERSION ├── doc │ ├── Makefile │ ├── api.rst │ ├── hw.rst │ ├── index.rst │ ├── overview.rst │ ├── programming.rst │ ├── resources.rst │ └── seealso.xml ├── module_build_info ├── module_description ├── module_dsp_short_reverb.metainfo └── src │ ├── descrip.txt │ ├── module_dsp_short_reverb_example_conf.h │ ├── reverb.c │ └── reverb.h ├── module_dsp_utils ├── .cproject ├── .makefile ├── .project ├── .xproject ├── EULA ├── README.rst ├── VERSION ├── doc │ ├── Makefile │ ├── api.rst │ ├── index.rst │ ├── overview.rst │ └── seealso.xml ├── module_build_info ├── module_description ├── module_dsp_utils.metainfo └── src │ ├── audio_sample_io.h │ ├── audio_sample_io.xc │ ├── common_audio.h │ ├── common_utils.c │ ├── common_utils.h │ ├── descrip.txt │ └── types64bit.h ├── module_dsp_vocoder ├── .cproject ├── .makefile ├── .module_dsp_short_reverb.buildinfo ├── .project ├── .xproject ├── EULA ├── README.rst ├── VERSION ├── doc │ ├── Makefile │ ├── api.rst │ ├── hw.rst │ ├── index.rst │ ├── overview.rst │ ├── programming.rst │ └── resources.rst ├── module_build_info ├── module_description ├── module_dsp_vocoder.metainfo └── src │ ├── module_dsp_vocoder_example_conf.h │ ├── vocoder.c │ └── vocoder.h ├── module_use_locks ├── .cproject ├── .makefile ├── .module_foc_util.buildinfo ├── .project ├── .xproject ├── README.rst ├── VERSION ├── doc │ ├── api.rst │ └── run_xdoc.log ├── module_build_info ├── module_description ├── module_foc_util.metainfo ├── run_xpd.log └── src │ ├── module_foc_util_example_conf.h │ ├── use_locks.c │ └── use_locks.h ├── test_biquad ├── .cproject ├── .project ├── .tmpproject-e ├── .xproject ├── Makefile ├── README.rst ├── gcc.dir │ └── main.x └── src │ ├── customdefines.h │ ├── main.c │ ├── main.h │ ├── module.c │ ├── module.h │ ├── test_common.h │ ├── test_harness.c │ └── test_harness.h ├── test_delay ├── .cproject ├── .project ├── .tmpproject-e ├── .xproject ├── EULA ├── LICENSING ├── Makefile ├── README.rst ├── VERSION ├── gcc.dir │ └── main.x └── src │ ├── customdefines.h │ ├── main.c │ ├── main.h │ ├── test_common.h │ ├── test_harness.c │ └── test_harness.h ├── test_loudness ├── .cproject ├── .project ├── .tmpproject-e ├── .xproject ├── EULA ├── LICENSING ├── Makefile ├── README.rst ├── VERSION ├── cc.mak ├── src │ ├── main.c │ ├── main.h │ ├── test_common.h │ ├── test_harness.c │ ├── test_harness.h │ └── tmp.h └── xcc.dir │ └── tmp.txt ├── test_reverb ├── .cproject ├── .project ├── .tmpproject-e ├── .xproject ├── EULA ├── LICENSING ├── Makefile ├── README.rst ├── Read.Me ├── VERSION ├── gcc.dir │ └── main.x └── src │ ├── main.c │ ├── main.h │ ├── test_common.h │ ├── test_harness.c │ └── test_harness.h ├── test_sdram_delay ├── .cproject ├── .project ├── .tmpproject-e ├── .xproject ├── EULA ├── LICENSING ├── Makefile ├── README.rst ├── VERSION ├── gcc.dir │ └── main.x └── src │ ├── customdefines.h │ ├── main.c │ ├── main.h │ ├── test_common.h │ ├── test_harness.c │ └── test_harness.h └── xpd.xml /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/README.rst -------------------------------------------------------------------------------- /app_slicekit_biquad/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/.cproject -------------------------------------------------------------------------------- /app_slicekit_biquad/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/.project -------------------------------------------------------------------------------- /app_slicekit_biquad/.tmpproject-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/.tmpproject-e -------------------------------------------------------------------------------- /app_slicekit_biquad/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/.xproject -------------------------------------------------------------------------------- /app_slicekit_biquad/EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/EULA -------------------------------------------------------------------------------- /app_slicekit_biquad/LICENSING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/LICENSING -------------------------------------------------------------------------------- /app_slicekit_biquad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/Makefile -------------------------------------------------------------------------------- /app_slicekit_biquad/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/README.rst -------------------------------------------------------------------------------- /app_slicekit_biquad/VERSION: -------------------------------------------------------------------------------- 1 | VERSION := 0v1 2 | -------------------------------------------------------------------------------- /app_slicekit_biquad/__MACOSX/sw_i2s_loop/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/__MACOSX/sw_i2s_loop/._.DS_Store -------------------------------------------------------------------------------- /app_slicekit_biquad/app_description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/app_description -------------------------------------------------------------------------------- /app_slicekit_biquad/src/app_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/src/app_conf.h -------------------------------------------------------------------------------- /app_slicekit_biquad/src/app_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/src/app_global.h -------------------------------------------------------------------------------- /app_slicekit_biquad/src/audio_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/src/audio_io.h -------------------------------------------------------------------------------- /app_slicekit_biquad/src/audio_io.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/src/audio_io.xc -------------------------------------------------------------------------------- /app_slicekit_biquad/src/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/src/codec.h -------------------------------------------------------------------------------- /app_slicekit_biquad/src/codec.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/src/codec.xc -------------------------------------------------------------------------------- /app_slicekit_biquad/src/descrip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/src/descrip.txt -------------------------------------------------------------------------------- /app_slicekit_biquad/src/dsp_biquad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/src/dsp_biquad.h -------------------------------------------------------------------------------- /app_slicekit_biquad/src/dsp_biquad.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/src/dsp_biquad.xc -------------------------------------------------------------------------------- /app_slicekit_biquad/src/i2s_master_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/src/i2s_master_conf.h -------------------------------------------------------------------------------- /app_slicekit_biquad/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/src/main.h -------------------------------------------------------------------------------- /app_slicekit_biquad/src/main.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/src/main.xc -------------------------------------------------------------------------------- /app_slicekit_biquad/src/module_dsp_biquad_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/src/module_dsp_biquad_conf.h -------------------------------------------------------------------------------- /app_slicekit_biquad/src/xa_sk_audio_1v0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_biquad/src/xa_sk_audio_1v0.h -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/.cproject -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/.project -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/.tmpproject-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/.tmpproject-e -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/.xproject -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/EULA -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/LICENSING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/LICENSING -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/Makefile -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/README.rst -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/VERSION: -------------------------------------------------------------------------------- 1 | VERSION := 0v1 2 | -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/app_description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/app_description -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/app_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/app_conf.h -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/app_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/app_global.h -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/audio_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/audio_io.h -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/audio_io.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/audio_io.xc -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/codec.h -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/codec.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/codec.xc -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/dsp_biquad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/dsp_biquad.h -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/dsp_biquad.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/dsp_biquad.xc -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/dsp_effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/dsp_effects.h -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/dsp_effects.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/dsp_effects.xc -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/dsp_loudness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/dsp_loudness.h -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/dsp_loudness.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/dsp_loudness.xc -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/gp_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/gp_io.h -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/gp_io.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/gp_io.xc -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/i2s_master_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/i2s_master_conf.h -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/main.h -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/main.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/main.xc -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/module_dsp_biquad_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/module_dsp_biquad_conf.h -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/module_dsp_long_delay_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/module_dsp_long_delay_conf.h -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/module_dsp_long_reverb_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/module_dsp_long_reverb_conf.h -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/module_dsp_loudness_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/module_dsp_loudness_conf.h -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/sdram_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/sdram_conf.h -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/sdram_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/sdram_io.h -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/sdram_io.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/sdram_io.xc -------------------------------------------------------------------------------- /app_slicekit_dsp_effects/src/xa_sk_audio_1v0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_dsp_effects/src/xa_sk_audio_1v0.h -------------------------------------------------------------------------------- /app_slicekit_long_delay/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/.cproject -------------------------------------------------------------------------------- /app_slicekit_long_delay/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/.project -------------------------------------------------------------------------------- /app_slicekit_long_delay/.tmpproject-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/.tmpproject-e -------------------------------------------------------------------------------- /app_slicekit_long_delay/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/.xproject -------------------------------------------------------------------------------- /app_slicekit_long_delay/EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/EULA -------------------------------------------------------------------------------- /app_slicekit_long_delay/LICENSING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/LICENSING -------------------------------------------------------------------------------- /app_slicekit_long_delay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/Makefile -------------------------------------------------------------------------------- /app_slicekit_long_delay/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/README.rst -------------------------------------------------------------------------------- /app_slicekit_long_delay/VERSION: -------------------------------------------------------------------------------- 1 | VERSION := 0v1 2 | -------------------------------------------------------------------------------- /app_slicekit_long_delay/__MACOSX/sw_i2s_loop/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/__MACOSX/sw_i2s_loop/._.DS_Store -------------------------------------------------------------------------------- /app_slicekit_long_delay/app_description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/app_description -------------------------------------------------------------------------------- /app_slicekit_long_delay/src/app_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/src/app_conf.h -------------------------------------------------------------------------------- /app_slicekit_long_delay/src/app_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/src/app_global.h -------------------------------------------------------------------------------- /app_slicekit_long_delay/src/audio_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/src/audio_io.h -------------------------------------------------------------------------------- /app_slicekit_long_delay/src/audio_io.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/src/audio_io.xc -------------------------------------------------------------------------------- /app_slicekit_long_delay/src/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/src/codec.h -------------------------------------------------------------------------------- /app_slicekit_long_delay/src/codec.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/src/codec.xc -------------------------------------------------------------------------------- /app_slicekit_long_delay/src/dsp_sdram_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/src/dsp_sdram_delay.h -------------------------------------------------------------------------------- /app_slicekit_long_delay/src/dsp_sdram_delay.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/src/dsp_sdram_delay.xc -------------------------------------------------------------------------------- /app_slicekit_long_delay/src/i2s_master_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/src/i2s_master_conf.h -------------------------------------------------------------------------------- /app_slicekit_long_delay/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/src/main.h -------------------------------------------------------------------------------- /app_slicekit_long_delay/src/main.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/src/main.xc -------------------------------------------------------------------------------- /app_slicekit_long_delay/src/module_dsp_long_delay_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/src/module_dsp_long_delay_conf.h -------------------------------------------------------------------------------- /app_slicekit_long_delay/src/sdram_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/src/sdram_conf.h -------------------------------------------------------------------------------- /app_slicekit_long_delay/src/sdram_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/src/sdram_io.h -------------------------------------------------------------------------------- /app_slicekit_long_delay/src/sdram_io.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/src/sdram_io.xc -------------------------------------------------------------------------------- /app_slicekit_long_delay/src/xa_sk_audio_1v0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_delay/src/xa_sk_audio_1v0.h -------------------------------------------------------------------------------- /app_slicekit_long_reverb/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/.cproject -------------------------------------------------------------------------------- /app_slicekit_long_reverb/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/.project -------------------------------------------------------------------------------- /app_slicekit_long_reverb/.tmpproject-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/.tmpproject-e -------------------------------------------------------------------------------- /app_slicekit_long_reverb/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/.xproject -------------------------------------------------------------------------------- /app_slicekit_long_reverb/EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/EULA -------------------------------------------------------------------------------- /app_slicekit_long_reverb/LICENSING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/LICENSING -------------------------------------------------------------------------------- /app_slicekit_long_reverb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/Makefile -------------------------------------------------------------------------------- /app_slicekit_long_reverb/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/README.rst -------------------------------------------------------------------------------- /app_slicekit_long_reverb/VERSION: -------------------------------------------------------------------------------- 1 | VERSION := 0v1 2 | -------------------------------------------------------------------------------- /app_slicekit_long_reverb/__MACOSX/sw_i2s_loop/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/__MACOSX/sw_i2s_loop/._.DS_Store -------------------------------------------------------------------------------- /app_slicekit_long_reverb/app_description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/app_description -------------------------------------------------------------------------------- /app_slicekit_long_reverb/src/app_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/src/app_conf.h -------------------------------------------------------------------------------- /app_slicekit_long_reverb/src/app_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/src/app_global.h -------------------------------------------------------------------------------- /app_slicekit_long_reverb/src/audio_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/src/audio_io.h -------------------------------------------------------------------------------- /app_slicekit_long_reverb/src/audio_io.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/src/audio_io.xc -------------------------------------------------------------------------------- /app_slicekit_long_reverb/src/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/src/codec.h -------------------------------------------------------------------------------- /app_slicekit_long_reverb/src/codec.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/src/codec.xc -------------------------------------------------------------------------------- /app_slicekit_long_reverb/src/dsp_biquad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/src/dsp_biquad.h -------------------------------------------------------------------------------- /app_slicekit_long_reverb/src/dsp_biquad.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/src/dsp_biquad.xc -------------------------------------------------------------------------------- /app_slicekit_long_reverb/src/dsp_loudness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/src/dsp_loudness.h -------------------------------------------------------------------------------- /app_slicekit_long_reverb/src/dsp_loudness.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/src/dsp_loudness.xc -------------------------------------------------------------------------------- /app_slicekit_long_reverb/src/dsp_sdram_reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/src/dsp_sdram_reverb.h -------------------------------------------------------------------------------- /app_slicekit_long_reverb/src/dsp_sdram_reverb.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/src/dsp_sdram_reverb.xc -------------------------------------------------------------------------------- /app_slicekit_long_reverb/src/i2s_master_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/src/i2s_master_conf.h -------------------------------------------------------------------------------- /app_slicekit_long_reverb/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/src/main.h -------------------------------------------------------------------------------- /app_slicekit_long_reverb/src/main.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/src/main.xc -------------------------------------------------------------------------------- /app_slicekit_long_reverb/src/module_dsp_biquad_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/src/module_dsp_biquad_conf.h -------------------------------------------------------------------------------- /app_slicekit_long_reverb/src/module_dsp_long_delay_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/src/module_dsp_long_delay_conf.h -------------------------------------------------------------------------------- /app_slicekit_long_reverb/src/module_dsp_long_reverb_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/src/module_dsp_long_reverb_conf.h -------------------------------------------------------------------------------- /app_slicekit_long_reverb/src/module_dsp_loudness_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/src/module_dsp_loudness_conf.h -------------------------------------------------------------------------------- /app_slicekit_long_reverb/src/sdram_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/src/sdram_conf.h -------------------------------------------------------------------------------- /app_slicekit_long_reverb/src/sdram_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/src/sdram_io.h -------------------------------------------------------------------------------- /app_slicekit_long_reverb/src/sdram_io.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/src/sdram_io.xc -------------------------------------------------------------------------------- /app_slicekit_long_reverb/src/xa_sk_audio_1v0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_long_reverb/src/xa_sk_audio_1v0.h -------------------------------------------------------------------------------- /app_slicekit_loudness/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/.cproject -------------------------------------------------------------------------------- /app_slicekit_loudness/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/.project -------------------------------------------------------------------------------- /app_slicekit_loudness/.tmpproject-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/.tmpproject-e -------------------------------------------------------------------------------- /app_slicekit_loudness/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/.xproject -------------------------------------------------------------------------------- /app_slicekit_loudness/EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/EULA -------------------------------------------------------------------------------- /app_slicekit_loudness/LICENSING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/LICENSING -------------------------------------------------------------------------------- /app_slicekit_loudness/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/Makefile -------------------------------------------------------------------------------- /app_slicekit_loudness/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/README.rst -------------------------------------------------------------------------------- /app_slicekit_loudness/VERSION: -------------------------------------------------------------------------------- 1 | VERSION := 0v1 2 | -------------------------------------------------------------------------------- /app_slicekit_loudness/__MACOSX/sw_i2s_loop/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/__MACOSX/sw_i2s_loop/._.DS_Store -------------------------------------------------------------------------------- /app_slicekit_loudness/app_description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/app_description -------------------------------------------------------------------------------- /app_slicekit_loudness/src/app_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/src/app_conf.h -------------------------------------------------------------------------------- /app_slicekit_loudness/src/app_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/src/app_global.h -------------------------------------------------------------------------------- /app_slicekit_loudness/src/audio_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/src/audio_io.h -------------------------------------------------------------------------------- /app_slicekit_loudness/src/audio_io.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/src/audio_io.xc -------------------------------------------------------------------------------- /app_slicekit_loudness/src/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/src/codec.h -------------------------------------------------------------------------------- /app_slicekit_loudness/src/codec.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/src/codec.xc -------------------------------------------------------------------------------- /app_slicekit_loudness/src/descrip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/src/descrip.txt -------------------------------------------------------------------------------- /app_slicekit_loudness/src/dsp_loudness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/src/dsp_loudness.h -------------------------------------------------------------------------------- /app_slicekit_loudness/src/dsp_loudness.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/src/dsp_loudness.xc -------------------------------------------------------------------------------- /app_slicekit_loudness/src/i2s_master_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/src/i2s_master_conf.h -------------------------------------------------------------------------------- /app_slicekit_loudness/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/src/main.h -------------------------------------------------------------------------------- /app_slicekit_loudness/src/main.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/src/main.xc -------------------------------------------------------------------------------- /app_slicekit_loudness/src/module_dsp_loudness_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/src/module_dsp_loudness_conf.h -------------------------------------------------------------------------------- /app_slicekit_loudness/src/xa_sk_audio_1v0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_loudness/src/xa_sk_audio_1v0.h -------------------------------------------------------------------------------- /app_slicekit_short_delay/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_delay/.cproject -------------------------------------------------------------------------------- /app_slicekit_short_delay/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_delay/.project -------------------------------------------------------------------------------- /app_slicekit_short_delay/.tmpproject-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_delay/.tmpproject-e -------------------------------------------------------------------------------- /app_slicekit_short_delay/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_delay/.xproject -------------------------------------------------------------------------------- /app_slicekit_short_delay/EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_delay/EULA -------------------------------------------------------------------------------- /app_slicekit_short_delay/LICENSING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_delay/LICENSING -------------------------------------------------------------------------------- /app_slicekit_short_delay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_delay/Makefile -------------------------------------------------------------------------------- /app_slicekit_short_delay/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_delay/README.rst -------------------------------------------------------------------------------- /app_slicekit_short_delay/VERSION: -------------------------------------------------------------------------------- 1 | VERSION := 0v1 2 | -------------------------------------------------------------------------------- /app_slicekit_short_delay/__MACOSX/sw_i2s_loop/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_delay/__MACOSX/sw_i2s_loop/._.DS_Store -------------------------------------------------------------------------------- /app_slicekit_short_delay/app_description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_delay/app_description -------------------------------------------------------------------------------- /app_slicekit_short_delay/src/app_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_delay/src/app_conf.h -------------------------------------------------------------------------------- /app_slicekit_short_delay/src/app_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_delay/src/app_global.h -------------------------------------------------------------------------------- /app_slicekit_short_delay/src/audio_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_delay/src/audio_io.h -------------------------------------------------------------------------------- /app_slicekit_short_delay/src/audio_io.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_delay/src/audio_io.xc -------------------------------------------------------------------------------- /app_slicekit_short_delay/src/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_delay/src/codec.h -------------------------------------------------------------------------------- /app_slicekit_short_delay/src/codec.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_delay/src/codec.xc -------------------------------------------------------------------------------- /app_slicekit_short_delay/src/dsp_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_delay/src/dsp_delay.h -------------------------------------------------------------------------------- /app_slicekit_short_delay/src/dsp_delay.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_delay/src/dsp_delay.xc -------------------------------------------------------------------------------- /app_slicekit_short_delay/src/i2s_master_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_delay/src/i2s_master_conf.h -------------------------------------------------------------------------------- /app_slicekit_short_delay/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_delay/src/main.h -------------------------------------------------------------------------------- /app_slicekit_short_delay/src/main.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_delay/src/main.xc -------------------------------------------------------------------------------- /app_slicekit_short_delay/src/module_dsp_short_delay_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_delay/src/module_dsp_short_delay_conf.h -------------------------------------------------------------------------------- /app_slicekit_short_delay/src/xa_sk_audio_1v0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_delay/src/xa_sk_audio_1v0.h -------------------------------------------------------------------------------- /app_slicekit_short_reverb/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/.cproject -------------------------------------------------------------------------------- /app_slicekit_short_reverb/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/.project -------------------------------------------------------------------------------- /app_slicekit_short_reverb/.tmpproject-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/.tmpproject-e -------------------------------------------------------------------------------- /app_slicekit_short_reverb/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/.xproject -------------------------------------------------------------------------------- /app_slicekit_short_reverb/EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/EULA -------------------------------------------------------------------------------- /app_slicekit_short_reverb/LICENSING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/LICENSING -------------------------------------------------------------------------------- /app_slicekit_short_reverb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/Makefile -------------------------------------------------------------------------------- /app_slicekit_short_reverb/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/README.rst -------------------------------------------------------------------------------- /app_slicekit_short_reverb/VERSION: -------------------------------------------------------------------------------- 1 | VERSION := 0v1 2 | -------------------------------------------------------------------------------- /app_slicekit_short_reverb/__MACOSX/sw_i2s_loop/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/__MACOSX/sw_i2s_loop/._.DS_Store -------------------------------------------------------------------------------- /app_slicekit_short_reverb/app_description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/app_description -------------------------------------------------------------------------------- /app_slicekit_short_reverb/src/app_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/src/app_conf.h -------------------------------------------------------------------------------- /app_slicekit_short_reverb/src/app_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/src/app_global.h -------------------------------------------------------------------------------- /app_slicekit_short_reverb/src/audio_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/src/audio_io.h -------------------------------------------------------------------------------- /app_slicekit_short_reverb/src/audio_io.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/src/audio_io.xc -------------------------------------------------------------------------------- /app_slicekit_short_reverb/src/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/src/codec.h -------------------------------------------------------------------------------- /app_slicekit_short_reverb/src/codec.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/src/codec.xc -------------------------------------------------------------------------------- /app_slicekit_short_reverb/src/dsp_biquad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/src/dsp_biquad.h -------------------------------------------------------------------------------- /app_slicekit_short_reverb/src/dsp_biquad.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/src/dsp_biquad.xc -------------------------------------------------------------------------------- /app_slicekit_short_reverb/src/dsp_loudness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/src/dsp_loudness.h -------------------------------------------------------------------------------- /app_slicekit_short_reverb/src/dsp_loudness.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/src/dsp_loudness.xc -------------------------------------------------------------------------------- /app_slicekit_short_reverb/src/dsp_reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/src/dsp_reverb.h -------------------------------------------------------------------------------- /app_slicekit_short_reverb/src/dsp_reverb.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/src/dsp_reverb.xc -------------------------------------------------------------------------------- /app_slicekit_short_reverb/src/i2s_master_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/src/i2s_master_conf.h -------------------------------------------------------------------------------- /app_slicekit_short_reverb/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/src/main.h -------------------------------------------------------------------------------- /app_slicekit_short_reverb/src/main.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/src/main.xc -------------------------------------------------------------------------------- /app_slicekit_short_reverb/src/module_dsp_biquad_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/src/module_dsp_biquad_conf.h -------------------------------------------------------------------------------- /app_slicekit_short_reverb/src/module_dsp_loudness_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/src/module_dsp_loudness_conf.h -------------------------------------------------------------------------------- /app_slicekit_short_reverb/src/module_dsp_short_delay_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/src/module_dsp_short_delay_conf.h -------------------------------------------------------------------------------- /app_slicekit_short_reverb/src/module_dsp_short_reverb_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/src/module_dsp_short_reverb_conf.h -------------------------------------------------------------------------------- /app_slicekit_short_reverb/src/xa_sk_audio_1v0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_short_reverb/src/xa_sk_audio_1v0.h -------------------------------------------------------------------------------- /app_slicekit_template/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_template/.cproject -------------------------------------------------------------------------------- /app_slicekit_template/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_template/.project -------------------------------------------------------------------------------- /app_slicekit_template/.tmpproject-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_template/.tmpproject-e -------------------------------------------------------------------------------- /app_slicekit_template/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_template/.xproject -------------------------------------------------------------------------------- /app_slicekit_template/EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_template/EULA -------------------------------------------------------------------------------- /app_slicekit_template/LICENSING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_template/LICENSING -------------------------------------------------------------------------------- /app_slicekit_template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_template/Makefile -------------------------------------------------------------------------------- /app_slicekit_template/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_template/README.rst -------------------------------------------------------------------------------- /app_slicekit_template/VERSION: -------------------------------------------------------------------------------- 1 | VERSION := 0v1 2 | -------------------------------------------------------------------------------- /app_slicekit_template/__MACOSX/sw_i2s_loop/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_template/__MACOSX/sw_i2s_loop/._.DS_Store -------------------------------------------------------------------------------- /app_slicekit_template/app_description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_template/app_description -------------------------------------------------------------------------------- /app_slicekit_template/src/app_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_template/src/app_conf.h -------------------------------------------------------------------------------- /app_slicekit_template/src/app_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_template/src/app_global.h -------------------------------------------------------------------------------- /app_slicekit_template/src/audio_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_template/src/audio_io.h -------------------------------------------------------------------------------- /app_slicekit_template/src/audio_io.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_template/src/audio_io.xc -------------------------------------------------------------------------------- /app_slicekit_template/src/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_template/src/codec.h -------------------------------------------------------------------------------- /app_slicekit_template/src/codec.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_template/src/codec.xc -------------------------------------------------------------------------------- /app_slicekit_template/src/dsp_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_template/src/dsp_template.h -------------------------------------------------------------------------------- /app_slicekit_template/src/dsp_template.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_template/src/dsp_template.xc -------------------------------------------------------------------------------- /app_slicekit_template/src/i2s_master_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_template/src/i2s_master_conf.h -------------------------------------------------------------------------------- /app_slicekit_template/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_template/src/main.h -------------------------------------------------------------------------------- /app_slicekit_template/src/main.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_template/src/main.xc -------------------------------------------------------------------------------- /app_slicekit_template/src/module_dsp_template_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_template/src/module_dsp_template_conf.h -------------------------------------------------------------------------------- /app_slicekit_template/src/xa_sk_audio_1v0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_template/src/xa_sk_audio_1v0.h -------------------------------------------------------------------------------- /app_slicekit_vocoder/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_vocoder/.cproject -------------------------------------------------------------------------------- /app_slicekit_vocoder/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_vocoder/.project -------------------------------------------------------------------------------- /app_slicekit_vocoder/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_vocoder/.xproject -------------------------------------------------------------------------------- /app_slicekit_vocoder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_vocoder/Makefile -------------------------------------------------------------------------------- /app_slicekit_vocoder/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_vocoder/README.rst -------------------------------------------------------------------------------- /app_slicekit_vocoder/app_description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_vocoder/app_description -------------------------------------------------------------------------------- /app_slicekit_vocoder/src/app_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_vocoder/src/app_conf.h -------------------------------------------------------------------------------- /app_slicekit_vocoder/src/app_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_vocoder/src/app_global.h -------------------------------------------------------------------------------- /app_slicekit_vocoder/src/audio_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_vocoder/src/audio_io.h -------------------------------------------------------------------------------- /app_slicekit_vocoder/src/audio_io.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_vocoder/src/audio_io.xc -------------------------------------------------------------------------------- /app_slicekit_vocoder/src/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_vocoder/src/codec.h -------------------------------------------------------------------------------- /app_slicekit_vocoder/src/codec.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_vocoder/src/codec.xc -------------------------------------------------------------------------------- /app_slicekit_vocoder/src/dsp_channel_vocoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_vocoder/src/dsp_channel_vocoder.h -------------------------------------------------------------------------------- /app_slicekit_vocoder/src/dsp_channel_vocoder.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_vocoder/src/dsp_channel_vocoder.xc -------------------------------------------------------------------------------- /app_slicekit_vocoder/src/dsp_vocoder_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_vocoder/src/dsp_vocoder_control.h -------------------------------------------------------------------------------- /app_slicekit_vocoder/src/dsp_vocoder_control.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_vocoder/src/dsp_vocoder_control.xc -------------------------------------------------------------------------------- /app_slicekit_vocoder/src/i2s_master_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_vocoder/src/i2s_master_conf.h -------------------------------------------------------------------------------- /app_slicekit_vocoder/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_vocoder/src/main.h -------------------------------------------------------------------------------- /app_slicekit_vocoder/src/main.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_vocoder/src/main.xc -------------------------------------------------------------------------------- /app_slicekit_vocoder/src/module_dsp_vocoder_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_vocoder/src/module_dsp_vocoder_conf.h -------------------------------------------------------------------------------- /app_slicekit_vocoder/src/xa_sk_audio_1v0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/app_slicekit_vocoder/src/xa_sk_audio_1v0.h -------------------------------------------------------------------------------- /doc_quickstart/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/doc_quickstart/.cproject -------------------------------------------------------------------------------- /doc_quickstart/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/doc_quickstart/.project -------------------------------------------------------------------------------- /doc_quickstart/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/doc_quickstart/.xproject -------------------------------------------------------------------------------- /doc_quickstart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/doc_quickstart/Makefile -------------------------------------------------------------------------------- /doc_quickstart/images/SliceKit_MemorySliceSqua_Audio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/doc_quickstart/images/SliceKit_MemorySliceSqua_Audio.jpg -------------------------------------------------------------------------------- /doc_quickstart/images/SliceKit_MemorySliceTria_Audio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/doc_quickstart/images/SliceKit_MemorySliceTria_Audio.jpg -------------------------------------------------------------------------------- /doc_quickstart/images/hardware_setup.jpg: -------------------------------------------------------------------------------- 1 | SliceKit_MemorySliceSqua_Audio.jpg -------------------------------------------------------------------------------- /doc_quickstart/images/hardware_setup_no_sdram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/doc_quickstart/images/hardware_setup_no_sdram.jpg -------------------------------------------------------------------------------- /doc_quickstart/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/doc_quickstart/index.rst -------------------------------------------------------------------------------- /doc_quickstart/quickstart_biquad.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/doc_quickstart/quickstart_biquad.rst -------------------------------------------------------------------------------- /doc_quickstart/quickstart_long_delay.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/doc_quickstart/quickstart_long_delay.rst -------------------------------------------------------------------------------- /doc_quickstart/quickstart_loudness.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/doc_quickstart/quickstart_loudness.rst -------------------------------------------------------------------------------- /doc_quickstart/quickstart_reverb_long.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/doc_quickstart/quickstart_reverb_long.rst -------------------------------------------------------------------------------- /doc_quickstart/quickstart_reverb_short.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/doc_quickstart/quickstart_reverb_short.rst -------------------------------------------------------------------------------- /doc_quickstart/quickstart_short_delay.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/doc_quickstart/quickstart_short_delay.rst -------------------------------------------------------------------------------- /module_dsp_biquad/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_biquad/.cproject -------------------------------------------------------------------------------- /module_dsp_biquad/.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_biquad/.makefile -------------------------------------------------------------------------------- /module_dsp_biquad/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_biquad/.project -------------------------------------------------------------------------------- /module_dsp_biquad/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_biquad/.xproject -------------------------------------------------------------------------------- /module_dsp_biquad/EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_biquad/EULA -------------------------------------------------------------------------------- /module_dsp_biquad/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_biquad/README.rst -------------------------------------------------------------------------------- /module_dsp_biquad/VERSION: -------------------------------------------------------------------------------- 1 | VERSION := 0v1 2 | -------------------------------------------------------------------------------- /module_dsp_biquad/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_biquad/doc/Makefile -------------------------------------------------------------------------------- /module_dsp_biquad/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_biquad/doc/api.rst -------------------------------------------------------------------------------- /module_dsp_biquad/doc/hw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_biquad/doc/hw.rst -------------------------------------------------------------------------------- /module_dsp_biquad/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_biquad/doc/index.rst -------------------------------------------------------------------------------- /module_dsp_biquad/doc/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_biquad/doc/overview.rst -------------------------------------------------------------------------------- /module_dsp_biquad/doc/programming.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_biquad/doc/programming.rst -------------------------------------------------------------------------------- /module_dsp_biquad/doc/resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_biquad/doc/resources.rst -------------------------------------------------------------------------------- /module_dsp_biquad/doc/seealso.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_biquad/doc/seealso.xml -------------------------------------------------------------------------------- /module_dsp_biquad/module_build_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_biquad/module_build_info -------------------------------------------------------------------------------- /module_dsp_biquad/module_description: -------------------------------------------------------------------------------- 1 | BiQuad filter written in 'C' 2 | -------------------------------------------------------------------------------- /module_dsp_biquad/module_dsp_biquad.metainfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_biquad/module_dsp_biquad.metainfo -------------------------------------------------------------------------------- /module_dsp_biquad/src/biquad_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_biquad/src/biquad_simple.c -------------------------------------------------------------------------------- /module_dsp_biquad/src/biquad_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_biquad/src/biquad_simple.h -------------------------------------------------------------------------------- /module_dsp_biquad/src/descrip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_biquad/src/descrip.txt -------------------------------------------------------------------------------- /module_dsp_biquad/src/module_dsp_biquad_example_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_biquad/src/module_dsp_biquad_example_conf.h -------------------------------------------------------------------------------- /module_dsp_long_delay/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_delay/.cproject -------------------------------------------------------------------------------- /module_dsp_long_delay/.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_delay/.makefile -------------------------------------------------------------------------------- /module_dsp_long_delay/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_delay/.project -------------------------------------------------------------------------------- /module_dsp_long_delay/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_delay/.xproject -------------------------------------------------------------------------------- /module_dsp_long_delay/EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_delay/EULA -------------------------------------------------------------------------------- /module_dsp_long_delay/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_delay/README.rst -------------------------------------------------------------------------------- /module_dsp_long_delay/VERSION: -------------------------------------------------------------------------------- 1 | VERSION := 0v1 2 | -------------------------------------------------------------------------------- /module_dsp_long_delay/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_delay/doc/Makefile -------------------------------------------------------------------------------- /module_dsp_long_delay/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_delay/doc/api.rst -------------------------------------------------------------------------------- /module_dsp_long_delay/doc/hw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_delay/doc/hw.rst -------------------------------------------------------------------------------- /module_dsp_long_delay/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_delay/doc/index.rst -------------------------------------------------------------------------------- /module_dsp_long_delay/doc/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_delay/doc/overview.rst -------------------------------------------------------------------------------- /module_dsp_long_delay/doc/programming.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_delay/doc/programming.rst -------------------------------------------------------------------------------- /module_dsp_long_delay/doc/resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_delay/doc/resources.rst -------------------------------------------------------------------------------- /module_dsp_long_delay/doc/seealso.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_delay/doc/seealso.xml -------------------------------------------------------------------------------- /module_dsp_long_delay/module_build_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_delay/module_build_info -------------------------------------------------------------------------------- /module_dsp_long_delay/module_description: -------------------------------------------------------------------------------- 1 | SDRAM-Delay written in 'C' 2 | -------------------------------------------------------------------------------- /module_dsp_long_delay/module_dsp_long_delay.metainfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_delay/module_dsp_long_delay.metainfo -------------------------------------------------------------------------------- /module_dsp_long_delay/src/descrip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_delay/src/descrip.txt -------------------------------------------------------------------------------- /module_dsp_long_delay/src/module_dsp_long_delay_example_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_delay/src/module_dsp_long_delay_example_conf.h -------------------------------------------------------------------------------- /module_dsp_long_delay/src/sdram_conf_example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_delay/src/sdram_conf_example.h -------------------------------------------------------------------------------- /module_dsp_long_delay/src/sdram_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_delay/src/sdram_delay.c -------------------------------------------------------------------------------- /module_dsp_long_delay/src/sdram_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_delay/src/sdram_delay.h -------------------------------------------------------------------------------- /module_dsp_long_reverb/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_reverb/.cproject -------------------------------------------------------------------------------- /module_dsp_long_reverb/.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_reverb/.makefile -------------------------------------------------------------------------------- /module_dsp_long_reverb/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_reverb/.project -------------------------------------------------------------------------------- /module_dsp_long_reverb/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_reverb/.xproject -------------------------------------------------------------------------------- /module_dsp_long_reverb/EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_reverb/EULA -------------------------------------------------------------------------------- /module_dsp_long_reverb/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_reverb/README.rst -------------------------------------------------------------------------------- /module_dsp_long_reverb/VERSION: -------------------------------------------------------------------------------- 1 | VERSION := 0v1 2 | -------------------------------------------------------------------------------- /module_dsp_long_reverb/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_reverb/doc/Makefile -------------------------------------------------------------------------------- /module_dsp_long_reverb/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_reverb/doc/api.rst -------------------------------------------------------------------------------- /module_dsp_long_reverb/doc/hw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_reverb/doc/hw.rst -------------------------------------------------------------------------------- /module_dsp_long_reverb/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_reverb/doc/index.rst -------------------------------------------------------------------------------- /module_dsp_long_reverb/doc/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_reverb/doc/overview.rst -------------------------------------------------------------------------------- /module_dsp_long_reverb/doc/programming.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_reverb/doc/programming.rst -------------------------------------------------------------------------------- /module_dsp_long_reverb/doc/resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_reverb/doc/resources.rst -------------------------------------------------------------------------------- /module_dsp_long_reverb/doc/seealso.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_reverb/doc/seealso.xml -------------------------------------------------------------------------------- /module_dsp_long_reverb/module_build_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_reverb/module_build_info -------------------------------------------------------------------------------- /module_dsp_long_reverb/module_description: -------------------------------------------------------------------------------- 1 | Reverb processing written in 'C' 2 | -------------------------------------------------------------------------------- /module_dsp_long_reverb/module_dsp_long_reverb.metainfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_reverb/module_dsp_long_reverb.metainfo -------------------------------------------------------------------------------- /module_dsp_long_reverb/src/descrip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_reverb/src/descrip.txt -------------------------------------------------------------------------------- /module_dsp_long_reverb/src/module_dsp_long_reverb_example_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_reverb/src/module_dsp_long_reverb_example_conf.h -------------------------------------------------------------------------------- /module_dsp_long_reverb/src/sdram_reverb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_reverb/src/sdram_reverb.c -------------------------------------------------------------------------------- /module_dsp_long_reverb/src/sdram_reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_long_reverb/src/sdram_reverb.h -------------------------------------------------------------------------------- /module_dsp_loudness/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_loudness/.cproject -------------------------------------------------------------------------------- /module_dsp_loudness/.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_loudness/.makefile -------------------------------------------------------------------------------- /module_dsp_loudness/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_loudness/.project -------------------------------------------------------------------------------- /module_dsp_loudness/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_loudness/.xproject -------------------------------------------------------------------------------- /module_dsp_loudness/EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_loudness/EULA -------------------------------------------------------------------------------- /module_dsp_loudness/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_loudness/README.rst -------------------------------------------------------------------------------- /module_dsp_loudness/VERSION: -------------------------------------------------------------------------------- 1 | VERSION := 0v1 2 | -------------------------------------------------------------------------------- /module_dsp_loudness/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_loudness/doc/Makefile -------------------------------------------------------------------------------- /module_dsp_loudness/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_loudness/doc/api.rst -------------------------------------------------------------------------------- /module_dsp_loudness/doc/hw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_loudness/doc/hw.rst -------------------------------------------------------------------------------- /module_dsp_loudness/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_loudness/doc/index.rst -------------------------------------------------------------------------------- /module_dsp_loudness/doc/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_loudness/doc/overview.rst -------------------------------------------------------------------------------- /module_dsp_loudness/doc/programming.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_loudness/doc/programming.rst -------------------------------------------------------------------------------- /module_dsp_loudness/doc/resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_loudness/doc/resources.rst -------------------------------------------------------------------------------- /module_dsp_loudness/doc/seealso.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_loudness/doc/seealso.xml -------------------------------------------------------------------------------- /module_dsp_loudness/module_build_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_loudness/module_build_info -------------------------------------------------------------------------------- /module_dsp_loudness/module_description: -------------------------------------------------------------------------------- 1 | Non-linear gain written in 'C' 2 | -------------------------------------------------------------------------------- /module_dsp_loudness/module_dsp_loudness.metainfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_loudness/module_dsp_loudness.metainfo -------------------------------------------------------------------------------- /module_dsp_loudness/src/descrip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_loudness/src/descrip.txt -------------------------------------------------------------------------------- /module_dsp_loudness/src/module_dsp_loudness_example_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_loudness/src/module_dsp_loudness_example_conf.h -------------------------------------------------------------------------------- /module_dsp_loudness/src/non_linear_gain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_loudness/src/non_linear_gain.c -------------------------------------------------------------------------------- /module_dsp_loudness/src/non_linear_gain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_loudness/src/non_linear_gain.h -------------------------------------------------------------------------------- /module_dsp_short_delay/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_delay/.cproject -------------------------------------------------------------------------------- /module_dsp_short_delay/.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_delay/.makefile -------------------------------------------------------------------------------- /module_dsp_short_delay/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_delay/.project -------------------------------------------------------------------------------- /module_dsp_short_delay/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_delay/.xproject -------------------------------------------------------------------------------- /module_dsp_short_delay/EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_delay/EULA -------------------------------------------------------------------------------- /module_dsp_short_delay/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_delay/README.rst -------------------------------------------------------------------------------- /module_dsp_short_delay/VERSION: -------------------------------------------------------------------------------- 1 | VERSION := 0v1 2 | -------------------------------------------------------------------------------- /module_dsp_short_delay/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_delay/doc/Makefile -------------------------------------------------------------------------------- /module_dsp_short_delay/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_delay/doc/api.rst -------------------------------------------------------------------------------- /module_dsp_short_delay/doc/hw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_delay/doc/hw.rst -------------------------------------------------------------------------------- /module_dsp_short_delay/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_delay/doc/index.rst -------------------------------------------------------------------------------- /module_dsp_short_delay/doc/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_delay/doc/overview.rst -------------------------------------------------------------------------------- /module_dsp_short_delay/doc/programming.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_delay/doc/programming.rst -------------------------------------------------------------------------------- /module_dsp_short_delay/doc/resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_delay/doc/resources.rst -------------------------------------------------------------------------------- /module_dsp_short_delay/doc/seealso.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_delay/doc/seealso.xml -------------------------------------------------------------------------------- /module_dsp_short_delay/module_build_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_delay/module_build_info -------------------------------------------------------------------------------- /module_dsp_short_delay/module_description: -------------------------------------------------------------------------------- 1 | Delay-line written in 'C' 2 | -------------------------------------------------------------------------------- /module_dsp_short_delay/module_dsp_short_delay.metainfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_delay/module_dsp_short_delay.metainfo -------------------------------------------------------------------------------- /module_dsp_short_delay/src/delay_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_delay/src/delay_line.c -------------------------------------------------------------------------------- /module_dsp_short_delay/src/delay_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_delay/src/delay_line.h -------------------------------------------------------------------------------- /module_dsp_short_delay/src/descrip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_delay/src/descrip.txt -------------------------------------------------------------------------------- /module_dsp_short_delay/src/module_dsp_short_delay_example_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_delay/src/module_dsp_short_delay_example_conf.h -------------------------------------------------------------------------------- /module_dsp_short_reverb/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_reverb/.cproject -------------------------------------------------------------------------------- /module_dsp_short_reverb/.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_reverb/.makefile -------------------------------------------------------------------------------- /module_dsp_short_reverb/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_reverb/.project -------------------------------------------------------------------------------- /module_dsp_short_reverb/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_reverb/.xproject -------------------------------------------------------------------------------- /module_dsp_short_reverb/EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_reverb/EULA -------------------------------------------------------------------------------- /module_dsp_short_reverb/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_reverb/README.rst -------------------------------------------------------------------------------- /module_dsp_short_reverb/VERSION: -------------------------------------------------------------------------------- 1 | VERSION := 0v1 2 | -------------------------------------------------------------------------------- /module_dsp_short_reverb/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_reverb/doc/Makefile -------------------------------------------------------------------------------- /module_dsp_short_reverb/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_reverb/doc/api.rst -------------------------------------------------------------------------------- /module_dsp_short_reverb/doc/hw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_reverb/doc/hw.rst -------------------------------------------------------------------------------- /module_dsp_short_reverb/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_reverb/doc/index.rst -------------------------------------------------------------------------------- /module_dsp_short_reverb/doc/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_reverb/doc/overview.rst -------------------------------------------------------------------------------- /module_dsp_short_reverb/doc/programming.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_reverb/doc/programming.rst -------------------------------------------------------------------------------- /module_dsp_short_reverb/doc/resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_reverb/doc/resources.rst -------------------------------------------------------------------------------- /module_dsp_short_reverb/doc/seealso.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_reverb/doc/seealso.xml -------------------------------------------------------------------------------- /module_dsp_short_reverb/module_build_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_reverb/module_build_info -------------------------------------------------------------------------------- /module_dsp_short_reverb/module_description: -------------------------------------------------------------------------------- 1 | Reverb processing written in 'C' 2 | -------------------------------------------------------------------------------- /module_dsp_short_reverb/module_dsp_short_reverb.metainfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_reverb/module_dsp_short_reverb.metainfo -------------------------------------------------------------------------------- /module_dsp_short_reverb/src/descrip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_reverb/src/descrip.txt -------------------------------------------------------------------------------- /module_dsp_short_reverb/src/module_dsp_short_reverb_example_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_reverb/src/module_dsp_short_reverb_example_conf.h -------------------------------------------------------------------------------- /module_dsp_short_reverb/src/reverb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_reverb/src/reverb.c -------------------------------------------------------------------------------- /module_dsp_short_reverb/src/reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_short_reverb/src/reverb.h -------------------------------------------------------------------------------- /module_dsp_utils/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_utils/.cproject -------------------------------------------------------------------------------- /module_dsp_utils/.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_utils/.makefile -------------------------------------------------------------------------------- /module_dsp_utils/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_utils/.project -------------------------------------------------------------------------------- /module_dsp_utils/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_utils/.xproject -------------------------------------------------------------------------------- /module_dsp_utils/EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_utils/EULA -------------------------------------------------------------------------------- /module_dsp_utils/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_utils/README.rst -------------------------------------------------------------------------------- /module_dsp_utils/VERSION: -------------------------------------------------------------------------------- 1 | VERSION := 0v1 2 | -------------------------------------------------------------------------------- /module_dsp_utils/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_utils/doc/Makefile -------------------------------------------------------------------------------- /module_dsp_utils/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_utils/doc/api.rst -------------------------------------------------------------------------------- /module_dsp_utils/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_utils/doc/index.rst -------------------------------------------------------------------------------- /module_dsp_utils/doc/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_utils/doc/overview.rst -------------------------------------------------------------------------------- /module_dsp_utils/doc/seealso.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_utils/doc/seealso.xml -------------------------------------------------------------------------------- /module_dsp_utils/module_build_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_utils/module_build_info -------------------------------------------------------------------------------- /module_dsp_utils/module_description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_utils/module_description -------------------------------------------------------------------------------- /module_dsp_utils/module_dsp_utils.metainfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_utils/module_dsp_utils.metainfo -------------------------------------------------------------------------------- /module_dsp_utils/src/audio_sample_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_utils/src/audio_sample_io.h -------------------------------------------------------------------------------- /module_dsp_utils/src/audio_sample_io.xc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_utils/src/audio_sample_io.xc -------------------------------------------------------------------------------- /module_dsp_utils/src/common_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_utils/src/common_audio.h -------------------------------------------------------------------------------- /module_dsp_utils/src/common_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_utils/src/common_utils.c -------------------------------------------------------------------------------- /module_dsp_utils/src/common_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_utils/src/common_utils.h -------------------------------------------------------------------------------- /module_dsp_utils/src/descrip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_utils/src/descrip.txt -------------------------------------------------------------------------------- /module_dsp_utils/src/types64bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_utils/src/types64bit.h -------------------------------------------------------------------------------- /module_dsp_vocoder/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_vocoder/.cproject -------------------------------------------------------------------------------- /module_dsp_vocoder/.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_vocoder/.makefile -------------------------------------------------------------------------------- /module_dsp_vocoder/.module_dsp_short_reverb.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_vocoder/.module_dsp_short_reverb.buildinfo -------------------------------------------------------------------------------- /module_dsp_vocoder/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_vocoder/.project -------------------------------------------------------------------------------- /module_dsp_vocoder/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_vocoder/.xproject -------------------------------------------------------------------------------- /module_dsp_vocoder/EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_vocoder/EULA -------------------------------------------------------------------------------- /module_dsp_vocoder/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_vocoder/README.rst -------------------------------------------------------------------------------- /module_dsp_vocoder/VERSION: -------------------------------------------------------------------------------- 1 | VERSION := 0v1 2 | -------------------------------------------------------------------------------- /module_dsp_vocoder/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_vocoder/doc/Makefile -------------------------------------------------------------------------------- /module_dsp_vocoder/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_vocoder/doc/api.rst -------------------------------------------------------------------------------- /module_dsp_vocoder/doc/hw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_vocoder/doc/hw.rst -------------------------------------------------------------------------------- /module_dsp_vocoder/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_vocoder/doc/index.rst -------------------------------------------------------------------------------- /module_dsp_vocoder/doc/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_vocoder/doc/overview.rst -------------------------------------------------------------------------------- /module_dsp_vocoder/doc/programming.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_vocoder/doc/programming.rst -------------------------------------------------------------------------------- /module_dsp_vocoder/doc/resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_vocoder/doc/resources.rst -------------------------------------------------------------------------------- /module_dsp_vocoder/module_build_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_vocoder/module_build_info -------------------------------------------------------------------------------- /module_dsp_vocoder/module_description: -------------------------------------------------------------------------------- 1 | Vocoder processing written in 'C' 2 | -------------------------------------------------------------------------------- /module_dsp_vocoder/module_dsp_vocoder.metainfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_vocoder/module_dsp_vocoder.metainfo -------------------------------------------------------------------------------- /module_dsp_vocoder/src/module_dsp_vocoder_example_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_vocoder/src/module_dsp_vocoder_example_conf.h -------------------------------------------------------------------------------- /module_dsp_vocoder/src/vocoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_vocoder/src/vocoder.c -------------------------------------------------------------------------------- /module_dsp_vocoder/src/vocoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_dsp_vocoder/src/vocoder.h -------------------------------------------------------------------------------- /module_use_locks/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_use_locks/.cproject -------------------------------------------------------------------------------- /module_use_locks/.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_use_locks/.makefile -------------------------------------------------------------------------------- /module_use_locks/.module_foc_util.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_use_locks/.module_foc_util.buildinfo -------------------------------------------------------------------------------- /module_use_locks/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_use_locks/.project -------------------------------------------------------------------------------- /module_use_locks/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_use_locks/.xproject -------------------------------------------------------------------------------- /module_use_locks/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_use_locks/README.rst -------------------------------------------------------------------------------- /module_use_locks/VERSION: -------------------------------------------------------------------------------- 1 | VERSION := 1v0alpha4 2 | -------------------------------------------------------------------------------- /module_use_locks/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_use_locks/doc/api.rst -------------------------------------------------------------------------------- /module_use_locks/doc/run_xdoc.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_use_locks/doc/run_xdoc.log -------------------------------------------------------------------------------- /module_use_locks/module_build_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_use_locks/module_build_info -------------------------------------------------------------------------------- /module_use_locks/module_description: -------------------------------------------------------------------------------- 1 | FOC Motor Control Utilities Module 2 | -------------------------------------------------------------------------------- /module_use_locks/module_foc_util.metainfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_use_locks/module_foc_util.metainfo -------------------------------------------------------------------------------- /module_use_locks/run_xpd.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_use_locks/run_xpd.log -------------------------------------------------------------------------------- /module_use_locks/src/module_foc_util_example_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_use_locks/src/module_foc_util_example_conf.h -------------------------------------------------------------------------------- /module_use_locks/src/use_locks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_use_locks/src/use_locks.c -------------------------------------------------------------------------------- /module_use_locks/src/use_locks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/module_use_locks/src/use_locks.h -------------------------------------------------------------------------------- /test_biquad/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_biquad/.cproject -------------------------------------------------------------------------------- /test_biquad/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_biquad/.project -------------------------------------------------------------------------------- /test_biquad/.tmpproject-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_biquad/.tmpproject-e -------------------------------------------------------------------------------- /test_biquad/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_biquad/.xproject -------------------------------------------------------------------------------- /test_biquad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_biquad/Makefile -------------------------------------------------------------------------------- /test_biquad/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_biquad/README.rst -------------------------------------------------------------------------------- /test_biquad/gcc.dir/main.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_biquad/gcc.dir/main.x -------------------------------------------------------------------------------- /test_biquad/src/customdefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_biquad/src/customdefines.h -------------------------------------------------------------------------------- /test_biquad/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_biquad/src/main.c -------------------------------------------------------------------------------- /test_biquad/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_biquad/src/main.h -------------------------------------------------------------------------------- /test_biquad/src/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_biquad/src/module.c -------------------------------------------------------------------------------- /test_biquad/src/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_biquad/src/module.h -------------------------------------------------------------------------------- /test_biquad/src/test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_biquad/src/test_common.h -------------------------------------------------------------------------------- /test_biquad/src/test_harness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_biquad/src/test_harness.c -------------------------------------------------------------------------------- /test_biquad/src/test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_biquad/src/test_harness.h -------------------------------------------------------------------------------- /test_delay/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_delay/.cproject -------------------------------------------------------------------------------- /test_delay/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_delay/.project -------------------------------------------------------------------------------- /test_delay/.tmpproject-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_delay/.tmpproject-e -------------------------------------------------------------------------------- /test_delay/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_delay/.xproject -------------------------------------------------------------------------------- /test_delay/EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_delay/EULA -------------------------------------------------------------------------------- /test_delay/LICENSING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_delay/LICENSING -------------------------------------------------------------------------------- /test_delay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_delay/Makefile -------------------------------------------------------------------------------- /test_delay/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_delay/README.rst -------------------------------------------------------------------------------- /test_delay/VERSION: -------------------------------------------------------------------------------- 1 | VERSION := 3v3 2 | -------------------------------------------------------------------------------- /test_delay/gcc.dir/main.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_delay/gcc.dir/main.x -------------------------------------------------------------------------------- /test_delay/src/customdefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_delay/src/customdefines.h -------------------------------------------------------------------------------- /test_delay/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_delay/src/main.c -------------------------------------------------------------------------------- /test_delay/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_delay/src/main.h -------------------------------------------------------------------------------- /test_delay/src/test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_delay/src/test_common.h -------------------------------------------------------------------------------- /test_delay/src/test_harness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_delay/src/test_harness.c -------------------------------------------------------------------------------- /test_delay/src/test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_delay/src/test_harness.h -------------------------------------------------------------------------------- /test_loudness/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_loudness/.cproject -------------------------------------------------------------------------------- /test_loudness/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_loudness/.project -------------------------------------------------------------------------------- /test_loudness/.tmpproject-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_loudness/.tmpproject-e -------------------------------------------------------------------------------- /test_loudness/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_loudness/.xproject -------------------------------------------------------------------------------- /test_loudness/EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_loudness/EULA -------------------------------------------------------------------------------- /test_loudness/LICENSING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_loudness/LICENSING -------------------------------------------------------------------------------- /test_loudness/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_loudness/Makefile -------------------------------------------------------------------------------- /test_loudness/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_loudness/README.rst -------------------------------------------------------------------------------- /test_loudness/VERSION: -------------------------------------------------------------------------------- 1 | VERSION := 3v3 2 | -------------------------------------------------------------------------------- /test_loudness/cc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_loudness/cc.mak -------------------------------------------------------------------------------- /test_loudness/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_loudness/src/main.c -------------------------------------------------------------------------------- /test_loudness/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_loudness/src/main.h -------------------------------------------------------------------------------- /test_loudness/src/test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_loudness/src/test_common.h -------------------------------------------------------------------------------- /test_loudness/src/test_harness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_loudness/src/test_harness.c -------------------------------------------------------------------------------- /test_loudness/src/test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_loudness/src/test_harness.h -------------------------------------------------------------------------------- /test_loudness/src/tmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_loudness/src/tmp.h -------------------------------------------------------------------------------- /test_loudness/xcc.dir/tmp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_loudness/xcc.dir/tmp.txt -------------------------------------------------------------------------------- /test_reverb/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_reverb/.cproject -------------------------------------------------------------------------------- /test_reverb/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_reverb/.project -------------------------------------------------------------------------------- /test_reverb/.tmpproject-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_reverb/.tmpproject-e -------------------------------------------------------------------------------- /test_reverb/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_reverb/.xproject -------------------------------------------------------------------------------- /test_reverb/EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_reverb/EULA -------------------------------------------------------------------------------- /test_reverb/LICENSING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_reverb/LICENSING -------------------------------------------------------------------------------- /test_reverb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_reverb/Makefile -------------------------------------------------------------------------------- /test_reverb/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_reverb/README.rst -------------------------------------------------------------------------------- /test_reverb/Read.Me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_reverb/Read.Me -------------------------------------------------------------------------------- /test_reverb/VERSION: -------------------------------------------------------------------------------- 1 | VERSION := 0v1 2 | -------------------------------------------------------------------------------- /test_reverb/gcc.dir/main.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_reverb/gcc.dir/main.x -------------------------------------------------------------------------------- /test_reverb/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_reverb/src/main.c -------------------------------------------------------------------------------- /test_reverb/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_reverb/src/main.h -------------------------------------------------------------------------------- /test_reverb/src/test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_reverb/src/test_common.h -------------------------------------------------------------------------------- /test_reverb/src/test_harness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_reverb/src/test_harness.c -------------------------------------------------------------------------------- /test_reverb/src/test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_reverb/src/test_harness.h -------------------------------------------------------------------------------- /test_sdram_delay/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_sdram_delay/.cproject -------------------------------------------------------------------------------- /test_sdram_delay/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_sdram_delay/.project -------------------------------------------------------------------------------- /test_sdram_delay/.tmpproject-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_sdram_delay/.tmpproject-e -------------------------------------------------------------------------------- /test_sdram_delay/.xproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_sdram_delay/.xproject -------------------------------------------------------------------------------- /test_sdram_delay/EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_sdram_delay/EULA -------------------------------------------------------------------------------- /test_sdram_delay/LICENSING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_sdram_delay/LICENSING -------------------------------------------------------------------------------- /test_sdram_delay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_sdram_delay/Makefile -------------------------------------------------------------------------------- /test_sdram_delay/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_sdram_delay/README.rst -------------------------------------------------------------------------------- /test_sdram_delay/VERSION: -------------------------------------------------------------------------------- 1 | VERSION := 3v3 2 | -------------------------------------------------------------------------------- /test_sdram_delay/gcc.dir/main.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_sdram_delay/gcc.dir/main.x -------------------------------------------------------------------------------- /test_sdram_delay/src/customdefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_sdram_delay/src/customdefines.h -------------------------------------------------------------------------------- /test_sdram_delay/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_sdram_delay/src/main.c -------------------------------------------------------------------------------- /test_sdram_delay/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_sdram_delay/src/main.h -------------------------------------------------------------------------------- /test_sdram_delay/src/test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_sdram_delay/src/test_common.h -------------------------------------------------------------------------------- /test_sdram_delay/src/test_harness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_sdram_delay/src/test_harness.c -------------------------------------------------------------------------------- /test_sdram_delay/src/test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/test_sdram_delay/src/test_harness.h -------------------------------------------------------------------------------- /xpd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcore/sw_audio_effects/HEAD/xpd.xml --------------------------------------------------------------------------------