Skip to content

Latest commit

 

History

History
58 lines (46 loc) · 2.56 KB

README

File metadata and controls

58 lines (46 loc) · 2.56 KB
 
Sep 25, 2001
Sep 25, 2001
1
2
SDL_sound. An abstract soundfile decoder.
Feb 11, 2002
Feb 11, 2002
3
4
5
6
7
8
9
10
11
12
13
14
SDL_sound is a library that handles the decoding of several popular sound file
formats, such as .WAV and .MP3. It is meant to make the programmer's sound
playback tasks simpler. The programmer gives SDL_sound a filename, or feeds
it data directly from one of many sources, and then reads the decoded
waveform data back at her leisure. If resource constraints are a concern,
SDL_sound can process sound data in programmer-specified blocks. Alternately,
SDL_sound can decode a whole sound file and hand back a single pointer to the
whole waveform. SDL_sound can also handle sample rate, audio format, and
channel conversion on-the-fly and behind-the-scenes, if the programmer
desires.
Please check the website for the most up-to-date information about SDL_sound:
Sep 25, 2001
Sep 25, 2001
15
16
http://icculus.org/SDL_sound/
Jan 20, 2002
Jan 20, 2002
17
18
19
20
21
SDL_sound _REQUIRES_ Simple Directmedia Layer (SDL) to function, and cannot
be built without it. You can get SDL from http://www.libsdl.org/. SDL_sound
has only been tried with the SDL 1.2 series, but may work on older versions.
Reports of success or failure are welcome.
Jan 19, 2002
Jan 19, 2002
22
Some optional external libraries that SDL_sound can use and where to find them:
Aug 22, 2002
Aug 22, 2002
23
24
SMPEG (used to decode MP3s): http://icculus.org/smpeg/
libvorbisfile (used to decode OGGs): http://www.xiph.org/ogg/vorbis/
Apr 17, 2008
Apr 17, 2008
25
libSpeex (used to decode SPXs): http://speex.org/
Jan 20, 2002
Jan 20, 2002
26
27
28
libFLAC (used to decode FLACs): http://flac.sourceforge.net/
libModPlug (used to decode MODs, etc): http://modplug-xmms.sourceforge.net/
libMikMod (used to decode MODs, etc, too): http://www.mikmod.org/
Jan 19, 2002
Jan 19, 2002
29
Apr 29, 2002
Apr 29, 2002
30
31
32
33
Experimental QuickTime support for the Mac is included, but has not been
integrated with the build system, and probably doesn't work with
QuickTime for Windows.
Jan 19, 2002
Jan 19, 2002
34
35
36
These external libraries are OPTIONAL. SDL_sound will build and function
without them, but various sound file formats are not supported unless these
libraries are available. Unless explicitly disabled during initial build
Jan 20, 2002
Jan 20, 2002
37
configuration, SDL_sound always supports these file formats internally:
Jan 19, 2002
Jan 19, 2002
38
Jan 20, 2002
Jan 20, 2002
39
40
41
42
43
44
- Microsoft .WAV files (uncompressed and MS-ADPCM encoded).
- Creative Labs .VOC files
- Shorten (.SHN) files
- Audio Interchange format (AIFF) files
- Sun Audio (.AU) files
- MIDI files
Feb 22, 2002
Feb 22, 2002
45
- MP3 files (internal decoder, different than the one SMPEG uses)
Jan 20, 2002
Jan 20, 2002
46
- Raw waveform data
Jan 19, 2002
Jan 19, 2002
47
48
Building/Installing:
Feb 8, 2002
Feb 8, 2002
49
Please read the INSTALL document.
Jan 19, 2002
Jan 19, 2002
50
51
52
53
54
Reporting bugs/commenting:
There is a mailing list available. To subscribe, send a blank email to
sdlsound-subscribe@icculus.org. This is the best way to get in touch with
SDL_sound developers.
Sep 25, 2001
Sep 25, 2001
55
Aug 6, 2007
Aug 6, 2007
56
--ryan. (icculus@icculus.org)