summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/audio_effects
Commit message (Collapse)AuthorAgeFilesLines
* Miscellaneous fixes: Vas Crabb2026-02-211-2/+6
| | | | | | | | | * cpu/drcbec.cpp: Work around older clang that doesn't support the floating point environment access pragma. * machine/i8251.cpp, emu/audio_effects/reverb.cpp: Fixed uninitialised data accesses. * sega/model2.cpp: Use 8251 ready output line status rather than pretending to be able to read the status register asynchronously.
* compressor: re-add infinite release option, and also infinite ratio hap2025-07-161-6/+7
|
* compressor: increase max input db so input gain won't distort the signal hap2025-07-161-2/+2
|
* compressor: correction to input gain calc hap2025-07-161-1/+1
|
* (emu.h) resampler: don't repeat default settings at several places, remove ↵ hap2025-07-042-2/+2
| | | | | | unneeded float<->double conversions, filter/eq: round default q down instead of up (probably has no audible effect)
* filter: move notch filter check to ui hap2025-06-251-6/+0
|
* Various fixes: Vas Crabb2025-06-255-82/+89
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ui: The new menus were unusable with a touchscreen, and not conducive to localisation. It's still not possible to add sound routes with a touchscreen, but at least it's possible to configure routes that exist. emu/sound.cpp: Fixed localisation issues, less temporary objects. emu/audio_effects: Fixed some localisation issues. plugins/autofire, plugins/inputmacro: Allow deleting autofire buttons or input macros without needing to use the UI Clear input. ui/selmenu.cpp, ui/imgcntrl.cpp: Use terse messages for bad media. Making these messages longer hasn't reduced support burden. Adding the version will just perpetuate the myth that you need to redownload all your ROMs for every release. ui/ui.cpp: Allow info screens to be dismissed by mouse clicks or touches. ui/sliders.cpp: Hiding the menu should preserve state. This is a design choice. sound: Avoid anything that could possibly depend on static initialisation order across transaltion units. Allow speaker position names to be localised. sound/none.cpp: Don't pretend it can create output streams.
* equalizer: check band mask instead of db when building filter hap2025-06-201-5/+4
|
* equalizer: change default bands to 100,330,1k,3,3k,10k hap2025-06-201-1/+1
|
* filter,equalizer: change default q to sqrt(2)/2 hap2025-06-194-5/+9
|
* audio_effect: add reset_all for resetting all variable settings hap2025-06-198-45/+68
|
* compressor: change channel link range to 0-1 hap2025-06-191-1/+1
|
* Revert "compressor: add infinite release option (eg. combine with input gain ↵ hap2025-06-191-1/+1
| | | | | | of 12db for some sort of replaygain option)" This reverts commit 9033932679e00151b4dcb417c67fdd99a395313a.
* compressor: add infinite release option (eg. combine with input gain of 12db ↵ hap2025-06-191-1/+1
| | | | for some sort of replaygain option)
* dpatrol: added bd3.d1 prom [Bitsavers] hap2025-06-192-2/+2
| | | | | | (removed one of the sets since it's an overdump) misc: small cleanup
* audio_effects/reverb.cpp: Add more missing initialization AJR2025-06-181-0/+1
|
* effects: Fix reverb decays, disable by default reverb and compressor Olivier Galibert2025-06-182-2/+7
|
* equalizer: change freq to u32, apply same nyquist freq fix as ↵ hap2025-06-182-34/+44
| | | | 1e71f7a0d3bd11974993dd16467432c3bcbb9126
* reverb: add more to default_changed hap2025-06-181-0/+30
|
* reverb: fix config_load typo hap2025-06-181-16/+16
|
* ui: improve control over audio filter cutoff freq hap2025-06-172-16/+21
|
* reverb: update to prev commit, don't hardcode "Default" in preset string hap2025-06-172-14/+16
|
* filter: don't try to filter above nyquist freq (or slightly below it) hap2025-06-171-2/+8
|
* reverb: detect preset when entering menu hap2025-06-172-5/+37
|
* reverb.cpp: Trying again on Windows. [R. Belmont] arbee2025-06-161-1/+8
|
* reverb: srcclean and blind attempt at Windows fix [R. Belmont] arbee2025-06-161-36/+37
|
* sound: Olivier Galibert2025-06-1710-39/+2207
| | | | | | | | move positions to osd interface add special-casing for LFE add reverb (currently too subtle, need to find out why) vgm_visualizer: stop going OOB on the bitmap
* audio compressor: make it a little less enthusiastic Olivier Galibert2025-05-111-1/+1
|
* EQ: detect when not actually used Olivier Galibert2025-05-102-2/+9
|
* compressor: remove printf spam hap2025-05-101-1/+0
|
* sound: Add a compressor. May need some tuning Olivier Galibert2025-05-102-2/+521
|
* effects: Recompute filters after loading the configuration Olivier Galibert2025-05-062-0/+6
|
* New sound infrastructure. Olivier Galibert2025-04-2710-0/+945
Should be added soon: - mute - speaker/microphone resampling To be added a little later: - compression - reverb Needs to be added by someone else: - coreaudio - direct - portaudio - xaudio2 - js