aui-framework / aui

Declarative UI toolkit for modern C++20
Mozilla Public License 2.0
52 stars 13 forks source link

wav playback is broken #309

Open Alex2772 opened 2 months ago

Arcnor commented 2 months ago

At least one problem seems to be that the WAV parser expects wav files without any chunks other than fmt and data (and I'm not even sure it correctly skips the data tag?) so it just starts reading the rest of the chunks as audio data. In any case, using a proper library for parsing WAV might make sense instead of reinventing the wheel here :).

Alex2772 commented 1 month ago

@IlyaZavalov