alexey.lysiuk

Results 28 comments of alexey.lysiuk

I'm fine with wx 3.1 because both branches are quite buggy anyway.

How does Intel CPU Windows .dll help to link executable built with `xtensa-esp32-elf` toolchain? You need to cross-compile `libsndfile` for that target, and link with this library. The same applies...

Could you please provide debug information in any format along with the binaries? This surely will help to match memory addresses with source lines.

DWARF or stabs format can be processed by tools to get it in readable form. Text based map file is even better but I doubt that it will contain line...

It was [this file](https://github.com/rheit/zdoom/raw/master/wadsrc/static/sounds/dsquake.flac). I'm pretty sure that the crash happens with any OGG or FLAC file.

Because it was reported by different people playing different sounds. I just grab the sound file from the first report.

``` ======================================== File : dsquake.flac Length : 5912 FLAC Stream Metadata Channels : 1 Sample rate : 11025 Frames : 15356 Bit width : 8 Seektable Metadata Vorbis Comment Metadata...

Here is an updated test with an ability to load files from command line. Also includes a few samples: WAV, OGG and FLAC files. [sndfile_test_2.zip](https://github.com/erikd/libsndfile/files/972890/sndfile_test_2.zip) All FLAC and OGG files...

Thanks for pointing this out. However after fixing the code it still crashes for me on embedded FLAC sound. Actually, it's mono sound and despite multi-channel issue my example had...

I'm using virtual I/O. I need to use it because sound files are decoded from memory chunks. File I/O seems to works fine.