From 5736a7de9b6d757f359dcb84a37f326ff4f7a7cc Mon Sep 17 00:00:00 2001 From: krcroft Date: Mon, 28 Oct 2019 13:55:32 -0700 Subject: [PATCH] Make comment match reality --- src/libs/decoders/SDL_sound.h | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/src/libs/decoders/SDL_sound.h b/src/libs/decoders/SDL_sound.h index bbd071f8..9225c912 100644 --- a/src/libs/decoders/SDL_sound.h +++ b/src/libs/decoders/SDL_sound.h @@ -39,22 +39,12 @@ * which is a powerful, free, and cross-platform multimedia library. It can * be found at http://www.libsdl.org/ * - * Support is in place or planned for the following sound formats: - * - .WAV (Microsoft WAVfile RIFF data, internal.) - * - .VOC (Creative Labs' Voice format, internal.) - * - .MP3 (MPEG-1 Layer 3 support, via libmpg123.) - * - .MID (MIDI music converted to Waveform data, internal.) - * - .MOD (MOD files, via MikMod and ModPlug.) - * - .OGG (Ogg Vorbis files, via the Vorbis libraries.) - * - .OPUS (Ogg Opus files, via the Opus libraries.) - * - .SPX (Speex files, via libspeex.) - * - .SHN (Shorten files, internal.) - * - .RAW (Raw sound data in any format, internal.) - * - .AU (Sun's Audio format, internal.) - * - .AIFF (Audio Interchange format, internal.) - * - .FLAC (Lossless audio compression, via libFLAC.) - * - * (...and more to come...) + * Support is in place for the following sound formats: + * - .WAV/.W64 (Microsoft WAVfile RIFF and Sony Wave64 data, via the dr_wav single-header codec) + * - .MP3 (MPEG-1 Layer 3 support via the dr_mp3 single-header decoder) + * - .OGG (Ogg Vorbis support via the std_vorbis single-header decoder) + * - .OPUS (Ogg Opus support via the Opusfile and SpeexDSP libraries) + * - .FLAC (Free Lossless Audio Codec support via the dr_flac single-header decoder) * * Please see the file LICENSE.txt in the source's root directory. *