From 847392496aae7eac4201c239cfb69446037bf870 Mon Sep 17 00:00:00 2001 From: David Reid Date: Sat, 11 Nov 2017 09:46:47 +1000 Subject: [PATCH] Add a note to the readme to make it clear mini_al does not load files. --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 652d83c3..c302f11a 100644 --- a/README.md +++ b/README.md @@ -115,4 +115,13 @@ int main(int argc, char** argv) return 0; } -``` \ No newline at end of file +``` + +mini_al does not directly support loading of audio files like WAV, FLAC, MP3, etc. You may want to +consider the following single file libraries for this: +- [dr_flac](https://github.com/mackron/dr_libs/blob/master/dr_flac.h) +- [dr_wav](https://github.com/mackron/dr_libs/blob/master/dr_wav.h) +- [stb_vorbis](https://github.com/nothings/stb/blob/master/stb_vorbis.c) + +If you know of any other single file libraries I can add to this list, let me know. Preferably public +domain or MIT.