├── .editorconfig ├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── TODO.md ├── cmake └── make_version_string.cmake ├── doc ├── doom_3_2004_channel_contribution_fix.md ├── doom_3_2004_deleting_attached_al_buffer.md ├── doom_3_2004_init_reverb_props.md ├── doom_3_2004_visual_twitch_fix.md ├── prey_2006_source_occlusion_fix.md └── quake_4_2005_source_occlusion_fix.md └── src ├── eaxefx_app_patcher ├── CHANGELOG.md ├── CMakeLists.txt ├── README.md └── src │ ├── eaxefx_app_patcher.c │ └── eaxefx_app_patcher.rc.in ├── eaxefx_patch_lib ├── CMakeLists.txt ├── include │ ├── eaxefx_file_patcher.h │ ├── eaxefx_patch.h │ ├── eaxefx_patch_collection.h │ ├── eaxefx_patch_validator.h │ └── eaxefx_win32_process_patcher.h └── src │ ├── eaxefx_file_patcher.cpp │ ├── eaxefx_patch.cpp │ ├── eaxefx_patch_collection.cpp │ ├── eaxefx_patch_validator.cpp │ └── eaxefx_win32_process_patcher.cpp ├── eaxefx_sys_lib ├── CMakeLists.txt ├── include │ ├── eaxefx_c_string.h │ ├── eaxefx_condition_variable.h │ ├── eaxefx_console.h │ ├── eaxefx_core_types.h │ ├── eaxefx_encoding.h │ ├── eaxefx_env.h │ ├── eaxefx_exception.h │ ├── eaxefx_file.h │ ├── eaxefx_fs.h │ ├── eaxefx_fs_path.h │ ├── eaxefx_logger.h │ ├── eaxefx_moveable_mutex_lock.h │ ├── eaxefx_mutex.h │ ├── eaxefx_platform.h │ ├── eaxefx_process.h │ ├── eaxefx_rc.h │ ├── eaxefx_scope_exit.h │ ├── eaxefx_shared_library.h │ ├── eaxefx_span.h │ ├── eaxefx_string.h │ ├── eaxefx_system_time.h │ ├── eaxefx_thread.h │ └── eaxefx_unit_converters.h └── src │ ├── eaxefx_c_string.cpp │ ├── eaxefx_core_types.cpp │ ├── eaxefx_exception.cpp │ ├── eaxefx_fs.cpp │ ├── eaxefx_fs_path.cpp │ ├── eaxefx_logger.cpp │ ├── eaxefx_moveable_mutex_lock.cpp │ ├── eaxefx_pch.h │ ├── eaxefx_span.cpp │ ├── eaxefx_string.cpp │ ├── eaxefx_sys_win32_condition_variable.cpp │ ├── eaxefx_sys_win32_condition_variable.h │ ├── eaxefx_sys_win32_critical_section.cpp │ ├── eaxefx_sys_win32_critical_section.h │ ├── eaxefx_sys_win32_event.cpp │ ├── eaxefx_sys_win32_event.h │ ├── eaxefx_system_time.cpp │ ├── eaxefx_win32_condition_variable.cpp │ ├── eaxefx_win32_console.cpp │ ├── eaxefx_win32_encoding.cpp │ ├── eaxefx_win32_env.cpp │ ├── eaxefx_win32_file.cpp │ ├── eaxefx_win32_mutex.cpp │ ├── eaxefx_win32_platform.cpp │ ├── eaxefx_win32_process.cpp │ ├── eaxefx_win32_shared_library.cpp │ ├── eaxefx_win32_string.cpp │ ├── eaxefx_win32_system_time.cpp │ └── eaxefx_win32_thread.cpp └── eaxefx_wrapper ├── CMakeLists.txt ├── include ├── eaxefx_al_api.h ├── eaxefx_al_api_context.h ├── eaxefx_al_api_utils.h ├── eaxefx_al_loader.h ├── eaxefx_al_low_pass_param.h ├── eaxefx_al_object.h ├── eaxefx_al_symbols.h ├── eaxefx_al_uresources.h ├── eaxefx_common_strings.h ├── eaxefx_eax_api.h ├── eaxefx_eaxx.h ├── eaxefx_eaxx_auto_wah_effect.h ├── eaxefx_eaxx_chorus_effect.h ├── eaxefx_eaxx_compressor_effect.h ├── eaxefx_eaxx_context.h ├── eaxefx_eaxx_context_shared.h ├── eaxefx_eaxx_distortion_effect.h ├── eaxefx_eaxx_eax_call.h ├── eaxefx_eaxx_eax_reverb_effect.h ├── eaxefx_eaxx_echo_effect.h ├── eaxefx_eaxx_effect.h ├── eaxefx_eaxx_equalizer_effect.h ├── eaxefx_eaxx_flanger_effect.h ├── eaxefx_eaxx_frequency_shifter_effect.h ├── eaxefx_eaxx_fx_slot.h ├── eaxefx_eaxx_fx_slot_index.h ├── eaxefx_eaxx_fx_slots.h ├── eaxefx_eaxx_null_effect.h ├── eaxefx_eaxx_pitch_shifter_effect.h ├── eaxefx_eaxx_ring_modulator_effect.h ├── eaxefx_eaxx_source.h ├── eaxefx_eaxx_validators.h ├── eaxefx_eaxx_vocal_morpher_effect.h ├── eaxefx_main.h └── eaxefx_utils.h ├── lib └── openal_soft │ ├── COPYING │ └── include │ └── AL │ ├── al.h │ ├── alc.h │ ├── alext.h │ ├── efx-creative.h │ ├── efx-presets.h │ └── efx.h └── src ├── eaxefx.rc.in ├── eaxefx_al_api.cpp ├── eaxefx_al_api_context.cpp ├── eaxefx_al_api_utils.cpp ├── eaxefx_al_loader.cpp ├── eaxefx_al_object.cpp ├── eaxefx_al_symbols.cpp ├── eaxefx_al_uresources.cpp ├── eaxefx_common_strings.cpp ├── eaxefx_eax_api.cpp ├── eaxefx_eaxx.cpp ├── eaxefx_eaxx_auto_wah_effect.cpp ├── eaxefx_eaxx_chorus_effect.cpp ├── eaxefx_eaxx_compressor_effect.cpp ├── eaxefx_eaxx_context.cpp ├── eaxefx_eaxx_context_shared.cpp ├── eaxefx_eaxx_distortion_effect.cpp ├── eaxefx_eaxx_eax_call.cpp ├── eaxefx_eaxx_eax_reverb_effect.cpp ├── eaxefx_eaxx_echo_effect.cpp ├── eaxefx_eaxx_effect.cpp ├── eaxefx_eaxx_equalizer_effect.cpp ├── eaxefx_eaxx_flanger_effect.cpp ├── eaxefx_eaxx_frequency_shifter_effect.cpp ├── eaxefx_eaxx_fx_slot.cpp ├── eaxefx_eaxx_fx_slot_index.cpp ├── eaxefx_eaxx_fx_slots.cpp ├── eaxefx_eaxx_null_effect.cpp ├── eaxefx_eaxx_pitch_shifter_effect.cpp ├── eaxefx_eaxx_ring_modulator_effect.cpp ├── eaxefx_eaxx_source.cpp ├── eaxefx_eaxx_vocal_morpher_effect.cpp ├── eaxefx_main.cpp ├── eaxefx_pch.h └── eaxefx_utils.cpp /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- 1 | # EAXEFX todo 2 | -------------------------------------------------------------------------------- /cmake/make_version_string.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/cmake/make_version_string.cmake -------------------------------------------------------------------------------- /doc/doom_3_2004_channel_contribution_fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/doc/doom_3_2004_channel_contribution_fix.md -------------------------------------------------------------------------------- /doc/doom_3_2004_deleting_attached_al_buffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/doc/doom_3_2004_deleting_attached_al_buffer.md -------------------------------------------------------------------------------- /doc/doom_3_2004_init_reverb_props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/doc/doom_3_2004_init_reverb_props.md -------------------------------------------------------------------------------- /doc/doom_3_2004_visual_twitch_fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/doc/doom_3_2004_visual_twitch_fix.md -------------------------------------------------------------------------------- /doc/prey_2006_source_occlusion_fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/doc/prey_2006_source_occlusion_fix.md -------------------------------------------------------------------------------- /doc/quake_4_2005_source_occlusion_fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/doc/quake_4_2005_source_occlusion_fix.md -------------------------------------------------------------------------------- /src/eaxefx_app_patcher/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_app_patcher/CHANGELOG.md -------------------------------------------------------------------------------- /src/eaxefx_app_patcher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_app_patcher/CMakeLists.txt -------------------------------------------------------------------------------- /src/eaxefx_app_patcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_app_patcher/README.md -------------------------------------------------------------------------------- /src/eaxefx_app_patcher/src/eaxefx_app_patcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_app_patcher/src/eaxefx_app_patcher.c -------------------------------------------------------------------------------- /src/eaxefx_app_patcher/src/eaxefx_app_patcher.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_app_patcher/src/eaxefx_app_patcher.rc.in -------------------------------------------------------------------------------- /src/eaxefx_patch_lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_patch_lib/CMakeLists.txt -------------------------------------------------------------------------------- /src/eaxefx_patch_lib/include/eaxefx_file_patcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_patch_lib/include/eaxefx_file_patcher.h -------------------------------------------------------------------------------- /src/eaxefx_patch_lib/include/eaxefx_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_patch_lib/include/eaxefx_patch.h -------------------------------------------------------------------------------- /src/eaxefx_patch_lib/include/eaxefx_patch_collection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_patch_lib/include/eaxefx_patch_collection.h -------------------------------------------------------------------------------- /src/eaxefx_patch_lib/include/eaxefx_patch_validator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_patch_lib/include/eaxefx_patch_validator.h -------------------------------------------------------------------------------- /src/eaxefx_patch_lib/include/eaxefx_win32_process_patcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_patch_lib/include/eaxefx_win32_process_patcher.h -------------------------------------------------------------------------------- /src/eaxefx_patch_lib/src/eaxefx_file_patcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_patch_lib/src/eaxefx_file_patcher.cpp -------------------------------------------------------------------------------- /src/eaxefx_patch_lib/src/eaxefx_patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_patch_lib/src/eaxefx_patch.cpp -------------------------------------------------------------------------------- /src/eaxefx_patch_lib/src/eaxefx_patch_collection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_patch_lib/src/eaxefx_patch_collection.cpp -------------------------------------------------------------------------------- /src/eaxefx_patch_lib/src/eaxefx_patch_validator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_patch_lib/src/eaxefx_patch_validator.cpp -------------------------------------------------------------------------------- /src/eaxefx_patch_lib/src/eaxefx_win32_process_patcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_patch_lib/src/eaxefx_win32_process_patcher.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/CMakeLists.txt -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/include/eaxefx_c_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/include/eaxefx_c_string.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/include/eaxefx_condition_variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/include/eaxefx_condition_variable.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/include/eaxefx_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/include/eaxefx_console.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/include/eaxefx_core_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/include/eaxefx_core_types.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/include/eaxefx_encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/include/eaxefx_encoding.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/include/eaxefx_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/include/eaxefx_env.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/include/eaxefx_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/include/eaxefx_exception.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/include/eaxefx_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/include/eaxefx_file.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/include/eaxefx_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/include/eaxefx_fs.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/include/eaxefx_fs_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/include/eaxefx_fs_path.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/include/eaxefx_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/include/eaxefx_logger.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/include/eaxefx_moveable_mutex_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/include/eaxefx_moveable_mutex_lock.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/include/eaxefx_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/include/eaxefx_mutex.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/include/eaxefx_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/include/eaxefx_platform.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/include/eaxefx_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/include/eaxefx_process.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/include/eaxefx_rc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/include/eaxefx_rc.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/include/eaxefx_scope_exit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/include/eaxefx_scope_exit.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/include/eaxefx_shared_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/include/eaxefx_shared_library.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/include/eaxefx_span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/include/eaxefx_span.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/include/eaxefx_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/include/eaxefx_string.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/include/eaxefx_system_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/include/eaxefx_system_time.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/include/eaxefx_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/include/eaxefx_thread.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/include/eaxefx_unit_converters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/include/eaxefx_unit_converters.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_c_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_c_string.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_core_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_core_types.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_exception.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_fs.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_fs_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_fs_path.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_logger.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_moveable_mutex_lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_moveable_mutex_lock.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_pch.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_span.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_span.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_string.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_sys_win32_condition_variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_sys_win32_condition_variable.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_sys_win32_condition_variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_sys_win32_condition_variable.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_sys_win32_critical_section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_sys_win32_critical_section.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_sys_win32_critical_section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_sys_win32_critical_section.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_sys_win32_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_sys_win32_event.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_sys_win32_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_sys_win32_event.h -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_system_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_system_time.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_win32_condition_variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_win32_condition_variable.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_win32_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_win32_console.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_win32_encoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_win32_encoding.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_win32_env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_win32_env.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_win32_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_win32_file.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_win32_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_win32_mutex.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_win32_platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_win32_platform.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_win32_process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_win32_process.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_win32_shared_library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_win32_shared_library.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_win32_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_win32_string.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_win32_system_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_win32_system_time.cpp -------------------------------------------------------------------------------- /src/eaxefx_sys_lib/src/eaxefx_win32_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_sys_lib/src/eaxefx_win32_thread.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/CMakeLists.txt -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_al_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_al_api.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_al_api_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_al_api_context.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_al_api_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_al_api_utils.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_al_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_al_loader.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_al_low_pass_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_al_low_pass_param.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_al_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_al_object.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_al_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_al_symbols.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_al_uresources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_al_uresources.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_common_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_common_strings.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eax_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eax_api.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eaxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eaxx.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eaxx_auto_wah_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eaxx_auto_wah_effect.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eaxx_chorus_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eaxx_chorus_effect.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eaxx_compressor_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eaxx_compressor_effect.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eaxx_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eaxx_context.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eaxx_context_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eaxx_context_shared.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eaxx_distortion_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eaxx_distortion_effect.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eaxx_eax_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eaxx_eax_call.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eaxx_eax_reverb_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eaxx_eax_reverb_effect.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eaxx_echo_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eaxx_echo_effect.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eaxx_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eaxx_effect.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eaxx_equalizer_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eaxx_equalizer_effect.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eaxx_flanger_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eaxx_flanger_effect.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eaxx_frequency_shifter_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eaxx_frequency_shifter_effect.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eaxx_fx_slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eaxx_fx_slot.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eaxx_fx_slot_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eaxx_fx_slot_index.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eaxx_fx_slots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eaxx_fx_slots.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eaxx_null_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eaxx_null_effect.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eaxx_pitch_shifter_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eaxx_pitch_shifter_effect.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eaxx_ring_modulator_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eaxx_ring_modulator_effect.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eaxx_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eaxx_source.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eaxx_validators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eaxx_validators.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_eaxx_vocal_morpher_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_eaxx_vocal_morpher_effect.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_main.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/include/eaxefx_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/include/eaxefx_utils.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/lib/openal_soft/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/lib/openal_soft/COPYING -------------------------------------------------------------------------------- /src/eaxefx_wrapper/lib/openal_soft/include/AL/al.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/lib/openal_soft/include/AL/al.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/lib/openal_soft/include/AL/alc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/lib/openal_soft/include/AL/alc.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/lib/openal_soft/include/AL/alext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/lib/openal_soft/include/AL/alext.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/lib/openal_soft/include/AL/efx-creative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/lib/openal_soft/include/AL/efx-creative.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/lib/openal_soft/include/AL/efx-presets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/lib/openal_soft/include/AL/efx-presets.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/lib/openal_soft/include/AL/efx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/lib/openal_soft/include/AL/efx.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx.rc.in -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_al_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_al_api.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_al_api_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_al_api_context.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_al_api_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_al_api_utils.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_al_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_al_loader.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_al_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_al_object.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_al_symbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_al_symbols.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_al_uresources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_al_uresources.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_common_strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_common_strings.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_eax_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_eax_api.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_eaxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_eaxx.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_eaxx_auto_wah_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_eaxx_auto_wah_effect.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_eaxx_chorus_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_eaxx_chorus_effect.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_eaxx_compressor_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_eaxx_compressor_effect.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_eaxx_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_eaxx_context.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_eaxx_context_shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_eaxx_context_shared.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_eaxx_distortion_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_eaxx_distortion_effect.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_eaxx_eax_call.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_eaxx_eax_call.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_eaxx_eax_reverb_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_eaxx_eax_reverb_effect.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_eaxx_echo_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_eaxx_echo_effect.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_eaxx_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_eaxx_effect.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_eaxx_equalizer_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_eaxx_equalizer_effect.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_eaxx_flanger_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_eaxx_flanger_effect.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_eaxx_frequency_shifter_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_eaxx_frequency_shifter_effect.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_eaxx_fx_slot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_eaxx_fx_slot.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_eaxx_fx_slot_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_eaxx_fx_slot_index.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_eaxx_fx_slots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_eaxx_fx_slots.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_eaxx_null_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_eaxx_null_effect.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_eaxx_pitch_shifter_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_eaxx_pitch_shifter_effect.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_eaxx_ring_modulator_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_eaxx_ring_modulator_effect.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_eaxx_source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_eaxx_source.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_eaxx_vocal_morpher_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_eaxx_vocal_morpher_effect.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_main.cpp -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_pch.h -------------------------------------------------------------------------------- /src/eaxefx_wrapper/src/eaxefx_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/eaxefx/HEAD/src/eaxefx_wrapper/src/eaxefx_utils.cpp --------------------------------------------------------------------------------