David Reid

Results 303 comments of David Reid

That first note at the top of that article isn't something I find appealing. I'm not much of a web person and I don't know anything about COOP or COEP...

If I'm reading the Emscripten documentation correctly, it looks like `__EMSCRIPTEN_PTHREADS__` will be defined if `-pthread` is being used. That, combined with it using actual real threads, probably makes it...

@teropa It surprised me to read that you have a `ma_resource_manager_job_thread` instance running because I thought I explicitly disabled threading on the Emscripten build: ```c /* The Emscripten build cannot...

Looking at the code, it looks like I disable threading in `ma_engine`, but I don't at the `ma_resource_manager` level. This was unintentional. When I first added Emscripten support, pthreads was...

@digitalsignalperson Try doing a fresh sync of the dev branch and try again. It might be fixed with this PR https://github.com/mackron/miniaudio/pull/888.

I took a look at this and I don't think there's a whole lot I need to do on the miniaudio side. All I did was made it so when...

I'm going to go ahead and close this one. I don't think there's anything else needing to be done, but if anyone notices something to improve by all means feel...

Thanks. I'm going to sit on this. Handling of `INVALIDATED` makes sense, but I'm not sure I want to just post a notification. I'm wondering if instead miniaudio should just...

It's funny you mention this because coincidentally I've been doing a maintenance pass on dr_mp3 which is what provides MP3 support for miniaudio, and it was just the other day...

I have added this to the dev-0.12 branch and just changed `ma_decoder_init()` to accept an `onTell` callback. I have no plans to backport this to 0.11.x.