GithubHelp home page GithubHelp logo

Inconsistent Audio Output about wasm4 HOT 2 OPEN

Inve1951 avatar Inve1951 commented on May 29, 2024
Inconsistent Audio Output

from wasm4.

Comments (2)

JerwuQu avatar JerwuQu commented on May 29, 2024

This sounds like phase shenaningans (google phase cancellation), and the difference in audio when running the same cart would be because the phase of the channels aren't always consistent. The reason the differences happens is likely because rendering updates, meaning calls to update and hence calls to tone, don't happen on the same audio sample number every time you start WASM-4 (an inherent flaw in running the audio engine based on an inaccurate timer).

I'm not an emulator developer, but here are some fixes I can think of and what I think their downsides are.

The simplest fix for this particular case of variance would be to reset the phase to 0 every time a tone is triggered. This has a pretty nasty downside of giving audible pops if re-triggering a note though, since the phase gets shifted mid-sound. This is most clearly heard with the triangle channel, and I think there even was an issue/PR for it way back.

Another (albeit more difficult) fix would be to rewrite the audio engine's oscillators to go based on sample number for phase rather than having a separate phase variable for each channel. This would keep the same relative phase between channels, but the notes can still start at different points in the phase. I personally have no clue if this is a good idea.

Final solution is to make update completely based on the audio callbacks, making sure they always happen on a specific sample. This has the downside of latency. Either you have 1 frame of delay to "postpone" the actual updates for the next audio callback, always having the samples ready... or you make sure your sample buffer is large enough and your update function is always fast enough to deliver the samples, or you'll have missing samples resulting in crackling. I believe this version with 1 frame of delay is the only "real" solution since we can't know how fast or slow a WASM-4 game will be.

from wasm4.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.