Skip to content

Latest commit

 

History

History
34 lines (30 loc) · 1.81 KB

CHANGELOG

File metadata and controls

34 lines (30 loc) · 1.81 KB
 
Sep 14, 2001
Sep 14, 2001
1
2
3
4
5
6
/*
* CHANGELOG.
*/
09132001 - Initial spec proposed on SDL mailing list, under name "SDL_voice".
09142001 - Changed name to SDL_sound, added Sound_DecodeAll() to spec.
Sep 19, 2001
Sep 19, 2001
7
8
09172001 - Changed some overlooked "voice" to "sound". Implemented base API.
So...tired. Everything's different. :)
Sep 17, 2001
Sep 17, 2001
9
Also put in a RAW decoder and a simple test program.
Sep 19, 2001
Sep 19, 2001
10
11
12
13
14
15
16
17
18
19
20
21
09182001 - Implemented MP3 support through SMPEG (not working yet, though) and
wrote the Reference Counting RWops wrapper. Added other little
things like the _D(()) macro. Added VOC support, which went up with
surprisingly little struggle, which means it MUST be leaking
memory. :)
09192001 - Added a skeleton decoder source file. Changed voc_read() to
voc_read_waveform(), so it wouldn't be confused with VOC_read().
Fixed a byte ordering bug in voc.c (reported as AUDIO_S16LSB, but
we were swapping byte order of data ourselves. Fixed). Added basic
.WAV support. Fixed Makefile so that -I. is always first;
otherwise, a previously installed header might get used for the
compiles, which is not good. SDL_sound.h now includes SDL_endian.h,
Sep 19, 2001
Sep 19, 2001
22
23
24
25
26
27
28
29
since SDL.h doesn't, for some reason. Moved version defines in
SDL_sound.h to top of file so I can find them. :)
Changed version to 0.1.1. Committed patch from Tsuyoshi Iguchi to
fix a segfault (I forgot to put a NULL terminator at the end of
the available_decoders array), fixing the only bug preventing the
test program from running on FreeBSD 4.3. Sweet. Added Ogg Vorbis
decoder. Rewrote the test program's SDL audio callback to be more
robust (Ogg exposed a nasty bug in it).
Sep 14, 2001
Sep 14, 2001
30
31
32
33
--ryan. (icculus@clutteredmind.org)
/* end of CHANGELOG ... */