annotate TODO @ 225:3b4415a39466

Updated.
author Ryan C. Gordon <icculus@icculus.org>
date Sat, 19 Jan 2002 01:53:15 +0000
parents ef72f3c490e7
children daa18455baf9
rev   line source
220
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
1 Left todo for 0.1.5:
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
2 - Implement rewind method in decoders missing it:
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
3 * mikmod.c
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
4 * ogg.c
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
5 * flac.c
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
6 * modplug.c
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
7 * voc.c
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
8 * midi.c
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
9 * mp3.c
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
10 * shn.c
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
11 - SMPEG only works after calling SDL_OpenAudio(), but I don't think this
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
12 is a universal truth (i.e. - OpenAL uses it without outputting through
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
13 SDL...) Figure out if this can be fixed.
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
14 - in Sound_NewSample*, if a decoder is selected by file extension and
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
15 fails, it should not be tried again when going through the rest of the
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
16 decoders. Or should we just opt to give up if the specified decoder
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
17 fails?
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
18 - Rename the "test" directory to "playsound".
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
19 - Have the default "make" build playsound, and "make install" install it.
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
20 - Update the Visual C project files.
0
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
21
23
06a009a1ec9e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 9
diff changeset
22 General stuff TODO:
0
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
23 - Verify portability to various Unixes (BSD, etc)
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
24 - Port to MacOS Classic.
119
254916e602c6 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 111
diff changeset
25 - Man pages for the API.
0
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
26
23
06a009a1ec9e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 9
diff changeset
27 More immediate:
79
a81efb367027 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 67
diff changeset
28 - Write a decent README.
23
06a009a1ec9e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 9
diff changeset
29 - Handle compression and other chunks in WAV files.
38
9950943545c4 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 30
diff changeset
30 - Handle compression and other chunks in AIFF-C files.
23
06a009a1ec9e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 9
diff changeset
31 - Cleanup up VOC decoder (seems messy to me).
156
ac46d8db8a8c Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 119
diff changeset
32 - Rename "test" directory to "playsound".
ac46d8db8a8c Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 119
diff changeset
33 - Have default make build playsound, and make install install it.
158
f7d65df4383a Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 156
diff changeset
34 - Make some of the SNDDBG() strings more uniform.
189
92eae705e0d1 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 184
diff changeset
35 - Run through ElectricFence, dmalloc, etc...
218
cbd5e308f12d Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 215
diff changeset
36 - Verify thread safety. SDL_sound should be fully reentrant right now, with
cbd5e308f12d Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 215
diff changeset
37 the exception of Sound_NewSample*()...starting two sounds at once can cause
cbd5e308f12d Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 215
diff changeset
38 the internal linked list of currently-decoding samples to scramble.
23
06a009a1ec9e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 9
diff changeset
39
0
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
40 Decoders to implement:
67
78da63951b29 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 55
diff changeset
41 - .CDA (Does this need specific decoding? Or is a RWops needed?)
78da63951b29 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 55
diff changeset
42 - An mpglib MP3 decoder? (or backend mpglib into SMPEG?)
225
3b4415a39466 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 220
diff changeset
43 - A c64 SID player?
0
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
44 - ...and more...
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
45
23
06a009a1ec9e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 9
diff changeset
46 Ongoing:
06a009a1ec9e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 9
diff changeset
47 - look for "FIXME"s in the code.
06a009a1ec9e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 9
diff changeset
48
0
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
49 /* end of TODO ... */
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
50