David Reid

Results 303 comments of David Reid

Just checking in to see if by chance you've been able to upgrade PipeWire and if this issue is still happening? No rush or anything.

I'm putting this down as an error in PipeWire. I don't think there's anything practical I can do on the miniaudio front so I'm going to close this ticket to...

Yep, this is very reasonable. I amalgamate the MP3, WAV and FLAC decoders using a script so there's probably a few compile time settings that could do with some propagation...

Yeah I wonder if this could indeed be a subtle error where miniaudio detects the sound has stopped and it just hasn't applied the fade out calculation for the last...

So c89atomic will by default use GCC's atomic intrinsics before falling back to any architecture-specific inlined assembly in the situation where those instrinsics are unavailable. If your compilation environment supports...

I'd be happy to support PowerPC in some form if the community contributed it. I have no experience with PowerPC whatsoever nor any personal requirement for it so I have...

I think this should be working now. When using modern versions of GCC it will use `__atomic*` intrinsics in which case you should only need to link with `-latomic`. For...

Thanks. I've fixed the CMake file. All of my libraries are public domain so you can do whatever you want with it.

With GCC 14, what are the results if you uncomment the `//#define C89ATOMIC_LEGACY_GCC` line near the top of c89atomic_basic.c? I'm not sure what's going on with the GCC 4.2 path....

I pushed a change to make `c89atomic_bool` 32-bit. It actually makes sense to do this because it's more likely it can work lock-free. 64-bit builds on old versions of Visual...