Add a note to the readme to make it clear mini_al does not load files.

This commit is contained in:
David Reid
2017-11-11 09:46:47 +10:00
parent 8c53756cac
commit 847392496a
+9
View File
@@ -116,3 +116,12 @@ int main(int argc, char** argv)
return 0; return 0;
} }
``` ```
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.