Jeremy Friesner
Jeremy Friesner
Hi Matthias, Yes, thank you, that does answer my question :^) Jeremy > On Aug 15, 2016, at 3:55 AM, Mathias Leppich [email protected] wrote: > > @jfriesne https://github.com/jfriesne you can...
I also get this error on my Intel Mac Mini (with Xcode 15.0.1 installed, no Rosetta involved, just a straight x86_64 build). Removing the `-force_cpusubtype_ALL` argument from lines 205, 206,...
FWIW I traced this down to this dubious code inside `mpg123_length64()` in `libmpg123`'s `libmpg123.c` file: ``` /* A bad estimate. Ignoring tags 'n stuff. */ double bpf = mh->mean_framesize ?...
I wonder if calling `sf_command(sf, SFC_SET_CLIPPING, NULL, SF_TRUE)` before calling `sf_write_float()` would cause libsndfile to clamp your samples into the expected sample-range and therefore prevent the FLAC subroutines from erroring...
@CrSjimo I believe the behavior you are seeing can be explained by the code at line 2586 of `src/libFLAC/stream_encoder.c` in the flac repository (in the `FLAC__stream_encoder_process_interleaved` function): ``` const FLAC__int32...
Thanks for the quick and helpful response! I've added the `-DCRASHPAD_ENABLE_STACKTRACE=On` flag to my cmake line, and I see that the Sentry report now contains a stack trace with some...
AFAIK the binary is not stripped; e.g. with Sentry disabled, the MacOS stack reporter shows a stack trace with the expected human-readable function names. (Also if I do run `strip`...
@supervacuus I spent about 3 hours playing "how about now?" with my app and Sentry (removing and adding code to see what would trigger the fault and what would not)...
@supervacuus yes, I am compiling/running on an Intel Mac Mini running Sonoma 14.1.2 (with XCode 15.0.1). I've zipped up my database folder (including just one crash report with the fault)...
I think libsndfile expects `ALAC` audio to be contained within a `.CAF` container, but your sample files are `ALAC` audio within a `.M4A` container and libsndfile doesn't currently know to...