annotate CHANGELOG @ 262:6fe6de401b63

mpglib support.
author Ryan C. Gordon <icculus@icculus.org>
date Thu, 21 Feb 2002 19:46:55 +0000
parents 8fa2a9b2642e
children 87ef8f3e9484
rev   line source
0
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
1 /*
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
2 * CHANGELOG.
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
3 */
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
4
262
6fe6de401b63 mpglib support.
Ryan C. Gordon <icculus@icculus.org>
parents: 258
diff changeset
5 02212002 - Changed SMPEG's URL to point to the icculus.org site. Added an
6fe6de401b63 mpglib support.
Ryan C. Gordon <icculus@icculus.org>
parents: 258
diff changeset
6 mpglib decoder (internal to SDL_sound; relies on no external libs)
6fe6de401b63 mpglib support.
Ryan C. Gordon <icculus@icculus.org>
parents: 258
diff changeset
7 and changes mp3.c to smpeg.c (and other associated things).
255
fedfb7975219 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 251
diff changeset
8 02112002 - Committed a patch from Torbjörn to fix incorrect memory accesses
256
c6b7f7999a0e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 255
diff changeset
9 in the Timidity code. Changed the magic number in the AU decoder
c6b7f7999a0e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 255
diff changeset
10 to be bigendian (seems appropriate). Updated README for
258
8fa2a9b2642e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 256
diff changeset
11 completeness, and TODO for accuracy. Darrell sent in updated
8fa2a9b2642e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 256
diff changeset
12 MacOS X Project Builder files (on the website).
250
649a7592e1c9 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 248
diff changeset
13 02072002 - Committed a patch Torbjörn sent in awhile ago for preventing
649a7592e1c9 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 248
diff changeset
14 confusion with Timidity++-specific stuff in the timidity.cfg file.
251
b9e090f89ef6 Tweaked comments, upped version to 0.1.5.
Ryan C. Gordon <icculus@icculus.org>
parents: 250
diff changeset
15 Tyler Montbriand sent in an updated Visual C package.
b9e090f89ef6 Tweaked comments, upped version to 0.1.5.
Ryan C. Gordon <icculus@icculus.org>
parents: 250
diff changeset
16 Updated SDL_sound.h's comments a little. Upped version to 0.1.5.
248
effbf695ba58 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 243
diff changeset
17 02052002 - Fixed a cleanup I broke last night. Added CWProject.sit to the
effbf695ba58 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 243
diff changeset
18 EXTRA_DIST section of Makefile.am, and updated the README with
effbf695ba58 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 243
diff changeset
19 MacOS (9/X) install instructions.
243
4a8d627a2326 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 240
diff changeset
20 02042002 - Darrell Walisser submitted some cleanups and CodeWarrior project
4a8d627a2326 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 240
diff changeset
21 files for MacOS 9. Sweet!
4a8d627a2326 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 240
diff changeset
22 01232002 - Max fixed decoders/Makefile.am to work with seperate build
4a8d627a2326 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 240
diff changeset
23 directories, and corrected some dates in this file.
240
ff6e66f54ece fixed decoders/Makefile.am
fingolfin
parents: 238
diff changeset
24 01192002 - Torbjörn sent in patches implementing the rewind method for the
234
156df33fd7fc Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 225
diff changeset
25 rest of the decoders except shn.c, for which I added a kludged
238
d8247b97b010 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 234
diff changeset
26 implementation. Added more info to the README. Hunted down the
d8247b97b010 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 234
diff changeset
27 reason why SMPEG can't decode before calling SDL_OpenAudio(), and
d8247b97b010 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 234
diff changeset
28 it can't be fixed without a change to SMPEG (not MY fault! :) ).
d8247b97b010 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 234
diff changeset
29 Made ModPlug take priority over MikMod when selecting a decoder.
d8247b97b010 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 234
diff changeset
30 Mutex-protected the internal samples list, and fixed some bugs in
d8247b97b010 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 234
diff changeset
31 the management of that list. Changed some stuff to use uniform
d8247b97b010 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 234
diff changeset
32 coding conventions.
240
ff6e66f54ece fixed decoders/Makefile.am
fingolfin
parents: 238
diff changeset
33 01182002 - SDL_sound/playsound builds and runs on BeOS now. Fixed an assertion
225
3b4415a39466 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 220
diff changeset
34 bug I introduced yesterday.
220
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
35 01172002 - Implemented Sound_Rewind(), and added a --loop command line to
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
36 playsound for testing. Rewrote the audio callback to handle looping
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
37 with both predecoded and streamed samples. Most of the decoders
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
38 just have an assert(0) in their internal rewinding method at this
225
3b4415a39466 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 220
diff changeset
39 point. I implemented the WAV, VOC, AU, AIFF, and RAW ones, for now.
3b4415a39466 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 220
diff changeset
40 (...and skeleton.c, for what that's worth.) A few tweaks in the
3b4415a39466 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 220
diff changeset
41 core API implementation to fix unlikely but possible leaks.
220
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
42 01112002 - Mattias Engdegård sent in an .AU decoder. Nice! He also tweaked
215
9bafd3e8276e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 210
diff changeset
43 playsound to try and wait until SDL has completed playing a given
9bafd3e8276e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 210
diff changeset
44 sound before closing the audio device. Changed a macro in
9bafd3e8276e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 210
diff changeset
45 decoders/shn.c to be more uniform with the other decoders.
218
cbd5e308f12d Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 215
diff changeset
46 SDL_sound error messages are now maintained on a per-thread basis,
cbd5e308f12d Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 215
diff changeset
47 and do not interfere with SDL_[GS]etError() anymore.
210
4861069841b9 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 205
diff changeset
48 01112002 - Committed the rest of Torbjörn's MOD patches, to clean up file
4861069841b9 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 205
diff changeset
49 extension handling.
205
2cae459bc47e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 204
diff changeset
50 01092002 - Torbjörn comes through with a ModPlug-based decoder, which should
2cae459bc47e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 204
diff changeset
51 work nicely for decoding multiple .MODs at once. Now we need to
2cae459bc47e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 204
diff changeset
52 figure out what to do with two decoders that can decode the same
2cae459bc47e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 204
diff changeset
53 file. For now, if you explicitly want either MikMod or ModPlug, you
2cae459bc47e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 204
diff changeset
54 should explicitly enable one decoder and disable the other on the
2cae459bc47e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 204
diff changeset
55 configure command line ("--enable-modplug --disable-mikmod", for
2cae459bc47e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 204
diff changeset
56 example), otherwise configure will try to sort out the best one for
2cae459bc47e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 204
diff changeset
57 your system. Choice is a wonderful thing. :)
2cae459bc47e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 204
diff changeset
58 01042002 - Forgot to bump playsound's version to match SDL_sound's. Fixed.
198
f9a752f41ab6 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 195
diff changeset
59 Added some notes to the top of COPYING about other libraries, etc.
203
ce6f870ed446 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 198
diff changeset
60 A real MIDI decoder (using a hacked version of the hacked version
204
dfe83937103c Credit where credit is due.
Ryan C. Gordon <icculus@icculus.org>
parents: 203
diff changeset
61 of Timidity from SDL_mixer) is now in place and working well,
dfe83937103c Credit where credit is due.
Ryan C. Gordon <icculus@icculus.org>
parents: 203
diff changeset
62 thanks to Torbjörn.
205
2cae459bc47e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 204
diff changeset
63 01012002 - Happy New Year. Added some debug output to wav.c for future
195
05bb0259cd2a Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 191
diff changeset
64 codecs (GSM comes to mind). Fixed the SMPEG decoder's URL to point
05bb0259cd2a Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 191
diff changeset
65 to Loki's webpage.
190
aa0f8b5d2dac Upped version to 0.1.4.
Ryan C. Gordon <icculus@icculus.org>
parents: 189
diff changeset
66 12302001 - Upped version to 0.1.4.
189
92eae705e0d1 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 184
diff changeset
67 12272001 - Added --audiobuf and --decodebuf options to playsound to make
92eae705e0d1 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 184
diff changeset
68 tracking down a bug in the ADPCM decoder easier (plus, it could
92eae705e0d1 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 184
diff changeset
69 help for benchmarking, etc later on...). Found a printf() bug in
92eae705e0d1 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 184
diff changeset
70 playsound (extra comma in there...). ADPCM decoder appears to be
92eae705e0d1 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 184
diff changeset
71 functional now. Tried to add ElectricFence support to
92eae705e0d1 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 184
diff changeset
72 configure.in, and failed. All this libtool/autoconf stuff makes my
92eae705e0d1 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 184
diff changeset
73 head hurt.
184
47cc2de2ae36 Changed reference to "LICENSE" file to "COPYING".
Ryan C. Gordon <icculus@icculus.org>
parents: 181
diff changeset
74 12262001 - Changed remaining references to the "LICENSE" file into "COPYING".
189
92eae705e0d1 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 184
diff changeset
75 Work progresses on the ADPCM-compressed .wav decoder. Updates to
92eae705e0d1 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 184
diff changeset
76 the documentation in SDL_sound.h. Hhmm...find_chunk() in wav.c was
92eae705e0d1 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 184
diff changeset
77 badly broken. Fixed.
181
993dd477eb4c Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 177
diff changeset
78 12162001 - FLAC decoder now checks for the magic number unless the file
993dd477eb4c Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 177
diff changeset
79 extension is recognized. This was changed back because searching
993dd477eb4c Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 177
diff changeset
80 for metadata, while probably more effective, is VERY expensive (and
993dd477eb4c Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 177
diff changeset
81 useless) on non-FLAC streams.
175
865c17682d8f Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 171
diff changeset
82 12052001 - Put our names in a "--credits" option in playsound, and put the
865c17682d8f Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 171
diff changeset
83 standard GNU disclaimers in there too, for good measure. Renamed
181
993dd477eb4c Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 177
diff changeset
84 LICENSE to COPYING to match GNU standards more closely (and to
177
028a6691fbf9 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 175
diff changeset
85 end Max's torment. :) ) Tweaks to wav.c, and work on aiff.c to
028a6691fbf9 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 175
diff changeset
86 make it easier to support multiple audio formats (for compression
028a6691fbf9 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 175
diff changeset
87 handling later down the road).
171
697fabe1453e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 169
diff changeset
88 11302001 - Torbjörn and I make Sound_DecodeAll() more robust: checks for
697fabe1453e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 169
diff changeset
89 previous decoding failures and sets an appropriate error, handles
697fabe1453e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 169
diff changeset
90 decoders that change their buffers on the fly (such as the FLAC
697fabe1453e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 169
diff changeset
91 decoder), and deals with out-of-memory conditions more gracefully.
169
a1255c02bab1 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 158
diff changeset
92 11252001 - (With thanks to Andreas Umbach for pointing it out) Fixed some
a1255c02bab1 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 158
diff changeset
93 problems with Sound_DecodeAll(). For local testing of this bug,
a1255c02bab1 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 158
diff changeset
94 added a --predecode command line to playsound. Minor fixes to
a1255c02bab1 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 158
diff changeset
95 theoretical bugs in Sound_FreeSample(). playsound no longer
a1255c02bab1 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 158
diff changeset
96 buffers stdout and stderr. Updated Sound_DecodeAll()'s comments in
a1255c02bab1 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 158
diff changeset
97 SDL_sound.h ...
a1255c02bab1 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 158
diff changeset
98 11192001 - FLAC decoder cleanups from Torbjörn.
154
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
99 11092001 - Torbjörn fixes playsound's audio callback after I broke it, again.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
100 A bug in configure.in was preventing SMPEG from being used unless
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
101 --enable-debug was set; fixed. Changed this file to list latest
158
f7d65df4383a Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 154
diff changeset
102 changes first. Torbjörn submitted a FLAC decoder that utilizes
f7d65df4383a Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 154
diff changeset
103 libFLAC (http://flac.sf.net/). Cool.
154
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
104 11012001 - API COMPATIBILITY BREAKAGE: Decoders can now list multiple file
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
105 extensions each. Playsound has been updated to handle this.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
106 Playsound now registers a SIGINT handler, so you can skip tracks
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
107 and/or abort the way that mpg123 does.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
108 10232001 - Rewrote playsound.c's audio_callback() to no longer need the
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
109 overflow buffer hack, which streamlines it a little and trims the
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
110 memory requirements for playsound by about 16 kilobytes.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
111 10172001 - Torbjörn catches a problem with the overflow buffer in playsound's
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
112 audio callback.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
113 10152001 - Torbjörn sends in a default sample format for the MIDI decoder,
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
114 and the starts of the audio conversion funcitonality (ripped
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
115 from SDL). Officially released 0.1.3. Added LICENSE and
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
116 CHANGELOG to the distribution. (Again, from Torbjörn) added in
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
117 the start of a tweaked audio converter.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
118 10122001 - Torbjörn Andersson submitted command line enhancements to
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
119 playsound, and I cleaned up the --help output.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
120 10092001 - Patches to shn.c for Visual C compatibility. Visual C project files
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
121 available from the website. Changed Corona688 to Tyler Montbriand
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
122 in CREDITS. Upped version to 0.1.3.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
123 10082001 - Restructured decoders/wav.c to allow for multiple formats, and
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
124 put the start of a handler for the ADPCM format in place.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
125 10072001 - Changed the way decoders/mod.c handles samplerate so that it should
191
fbb6101ea4b4 Fixed a small typo.
Ryan C. Gordon <icculus@icculus.org>
parents: 190
diff changeset
126 work universally. This isn't an ideal solution, but it's probably
154
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
127 the best we can do without rewriting mikmod. Made a change to ogg.c
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
128 for portability: changed an int64_t to ogg_int64_t.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
129 10062001 - Made a change to SDL_sound.c for compiling on non-GNU toolchains.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
130 10052001 - Removed #include "SDL_endian" from aiff.c.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
131 10042001 - Changed some #if (defined SOUND_SUPPORTS_*) lines to
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
132 #ifdef SOUND_SUPPORTS_* in voc.c and shn.c, for consistency with
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
133 the other decoders.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
134 10032001 - After hours of tracking down a bogus pointer, the SHN decoder works!
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
135 I can die happy. :) Max placated me with an --enable-debug option
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
136 so I could stop my whining. Other autoconf goodies (such as
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
137 reenabling -Werror for debug builds, etc). Torbjörn brings in a
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
138 MIDI decoder, which reads from a Timidity process through a pipe.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
139 Changed playsound to open the audio device to match the properties
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
140 of each sound file, which results in less conversion (and therefore,
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
141 more chance of correct playback).
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
142 10022001 - Changed a comment in mod.c to not refer to "the mikmod
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
143 directory" anymore. Committed Torbjörn's patch for MP3 detection.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
144 (better late than never). __Sound_strcasecmp() now handles NULL
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
145 strings gracefully, fixing the crash with "playsound bootstrap".
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
146 More work on the SHN decoder.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
147 10012001 - Fixed a memory leak that Torbjörn found in the MOD decoder.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
148 09252001 - More autoconf work. Gave Max Horn write access to the CVS
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
149 repository, so I don't drive him nuts tweaking this thing. :)
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
150 Fixed a const complaint and some other stuff needed for compilation
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
151 under Visual C++ 6.0 (no, it isn't ported yet). Put the SHN source
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
152 in CVS, even though it isn't ready (and doesn't even compile). Do
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
153 NOT enable it in your build!
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
154 09242001 - Thank goodness, Torbjörn came through with the MP3 fix. Apparently
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
155 SMPEG mixes each chunk of decoded data with whatever is already
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
156 in the buffer you give it. I hate that. I'm going to patch SMPEG
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
157 to let the programmer enable and disable that behaviour in a given
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
158 (SMPEG *), since it's just a CPU eater in this case. The _D(())
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
159 macro is now SNDDBG(()), since _D is taken on MacOS X's version of
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
160 gcc (which was bound to happen on some platform sooner than later
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
161 anyhow). Renamed test_sdlsound to playsound, and made it more
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
162 robust in general: fixed potential overflow in audio_callback,
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
163 made it chatter less, made it take multiple files and some other
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
164 command lines. Initial autoconf support, thanks to Max Horn.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
165 09222001 - Torbjörn Andersson strikes again, with a collection of patches.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
166 First, some cosmetic tweaks for decoders/aiff.c. Next, a MOD player
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
167 based on MikMod. This inspired me to add two more methods to
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
168 Sound_DecoderFunctions: init() and quit(). Third, a fix to
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
169 decoders/mp3.c so that SMPEG won't claim every stream it sees, MP3
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
170 or not. I removed the multiple-streams-per-rwops code, after
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
171 discussion on the mailing list. The init() and quit() methods
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
172 led to the possibility that certain decoders will flag themselves
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
173 as unavailable at runtime, and SDL_sound now handles this.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
174 Added [LIB|INC]PATH_[OGG|MOD]. Bigendian fixes; now works on
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
175 PowerPC Linux. MikMod tweaks. Changed version to 0.1.2.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
176 09202001 - Torbjörn Andersson submitted several patches: fixed a comment in
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
177 the .WAV decoder (whoops...screwed up my own search-and-replace.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
178 Hah.), made an attempt at putting multiple sound streams behind
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
179 one RWops (gotta think on that one first), and, most importantly,
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
180 added an AIFF decoder, which is very cool.
23
06a009a1ec9e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 2
diff changeset
181 09192001 - Added a skeleton decoder source file. Changed voc_read() to
06a009a1ec9e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 2
diff changeset
182 voc_read_waveform(), so it wouldn't be confused with VOC_read().
06a009a1ec9e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 2
diff changeset
183 Fixed a byte ordering bug in voc.c (reported as AUDIO_S16LSB, but
06a009a1ec9e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 2
diff changeset
184 we were swapping byte order of data ourselves. Fixed). Added basic
06a009a1ec9e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 2
diff changeset
185 .WAV support. Fixed Makefile so that -I. is always first;
06a009a1ec9e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 2
diff changeset
186 otherwise, a previously installed header might get used for the
06a009a1ec9e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 2
diff changeset
187 compiles, which is not good. SDL_sound.h now includes SDL_endian.h,
30
66ff8562eec0 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 23
diff changeset
188 since SDL.h doesn't, for some reason. Moved version defines in
66ff8562eec0 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 23
diff changeset
189 SDL_sound.h to top of file so I can find them. :)
66ff8562eec0 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 23
diff changeset
190 Changed version to 0.1.1. Committed patch from Tsuyoshi Iguchi to
66ff8562eec0 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 23
diff changeset
191 fix a segfault (I forgot to put a NULL terminator at the end of
66ff8562eec0 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 23
diff changeset
192 the available_decoders array), fixing the only bug preventing the
66ff8562eec0 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 23
diff changeset
193 test program from running on FreeBSD 4.3. Sweet. Added Ogg Vorbis
66ff8562eec0 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 23
diff changeset
194 decoder. Rewrote the test program's SDL audio callback to be more
33
662bacccfd2c Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 30
diff changeset
195 robust (Ogg exposed a nasty bug in it). Fixed a byte-ordering issue
38
9950943545c4 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 33
diff changeset
196 in the VOC decoder.
154
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
197 09182001 - Implemented MP3 support through SMPEG (not working yet, though) and
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
198 wrote the Reference Counting RWops wrapper. Added other little
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
199 things like the _D(()) macro. Added VOC support, which went up with
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
200 surprisingly little struggle, which means it MUST be leaking
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
201 memory. :)
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
202 09172001 - Changed some overlooked "voice" to "sound". Implemented base API.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
203 So...tired. Everything's different. :)
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
204 Also put in a RAW decoder and a simple test program.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
205 09142001 - Changed name to SDL_sound, added Sound_DecodeAll() to spec.
feff6dab2278 Now lists latests entry first.
Ryan C. Gordon <icculus@icculus.org>
parents: 153
diff changeset
206 09132001 - Initial spec proposed on SDL mailing list, under name "SDL_voice".
0
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
207
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
208 --ryan. (icculus@clutteredmind.org)
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
209
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
210 /* end of CHANGELOG ... */
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
211