bsnes/higan/ws/apu
Tim Allen fdc41611cf Update to v098r14 release.
byuu says:

Changelog:
- improved attenuation of biquad filter by computing butterworth Q
  coefficients correctly (instead of using the same constant)
- adding 1e-25 to each input sample into the biquad filters to try and
  prevent denormalization
- updated normalization from [0.0 to 1.0] to [-1.0 to +1.0]; volume/reverb
  happen in floating-point mode now
- good amount of work to make the base Emulator::Audio support any number
  of output channels
  - so that we don't have to do separate work on left/right channels;
    and can instead share the code for each channel
- Emulator::Interface::audioSample(int16 left, int16 right); changed to:
  - Emulator::Interface::audioSample(double* samples, uint channels);
  - samples are normalized [-1.0 to +1.0]
  - for now at least, channels will be the value given to
    Emulator::Audio::reset()
- fixed GUI crash on startup when audio driver is set to None

I'm probably going to be updating ruby to accept normalized doubles as
well; but I'm not sure if I will try and support anything other 2-channel
audio output. It'll depend on how easy it is to do so; perhaps it'll be
a per-driver setting.

The denormalization thing is fierce. If that happens, it drops the
emulator framerate from 220fps to about 20fps for Game Boy emulation. And
that happens basically whenever audio output is silent. I'm probably
also going to make a nall/denormal.hpp file at some point with
platform-specific functionality to set the CPU state to "denormals as
zero" where applicable. I'll still add the 1e-25 offset (inaudible)
as another fallback.
2016-06-01 21:23:22 +10:00
..
apu.cpp Update to v098r14 release. 2016-06-01 21:23:22 +10:00
apu.hpp Update to v098r06 release. 2016-04-22 23:35:51 +10:00
channel1.cpp Update to v097r26 release. 2016-03-17 22:28:15 +11:00
channel2.cpp Update to v097r26 release. 2016-03-17 22:28:15 +11:00
channel3.cpp Update to v097r27 release. 2016-03-19 18:35:25 +11:00
channel4.cpp Update to v097r26 release. 2016-03-17 22:28:15 +11:00
channel5.cpp Update to v097r27 release. 2016-03-19 18:35:25 +11:00
dma.cpp Update to v097r26 release. 2016-03-17 22:28:15 +11:00
io.cpp Update to v097r26 release. 2016-03-17 22:28:15 +11:00
serialization.cpp Update to v097r29 release. 2016-03-26 12:56:15 +11:00