annotate TODO @ 234:156df33fd7fc

Updated.
author Ryan C. Gordon <icculus@icculus.org>
date Sat, 19 Jan 2002 20:03:09 +0000
parents aa4137f121e4
children d8247b97b010
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 - 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
3 is a universal truth (i.e. - OpenAL uses it without outputting through
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
4 SDL...) Figure out if this can be fixed.
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
5 - in Sound_NewSample*, if a decoder is selected by file extension and
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
6 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
7 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
8 fails?
ef72f3c490e7 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 218
diff changeset
9 - Update the Visual C project files.
0
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
10
23
06a009a1ec9e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 9
diff changeset
11 General stuff TODO:
0
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
12 - Verify portability to various Unixes (BSD, etc)
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
13 - Port to MacOS Classic.
119
254916e602c6 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 111
diff changeset
14 - Man pages for the API.
0
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
15
23
06a009a1ec9e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 9
diff changeset
16 More immediate:
79
a81efb367027 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 67
diff changeset
17 - Write a decent README.
23
06a009a1ec9e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 9
diff changeset
18 - Handle compression and other chunks in WAV files.
38
9950943545c4 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 30
diff changeset
19 - Handle compression and other chunks in AIFF-C files.
23
06a009a1ec9e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 9
diff changeset
20 - Cleanup up VOC decoder (seems messy to me).
156
ac46d8db8a8c Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 119
diff changeset
21 - Rename "test" directory to "playsound".
ac46d8db8a8c Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 119
diff changeset
22 - Have default make build playsound, and make install install it.
158
f7d65df4383a Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 156
diff changeset
23 - Make some of the SNDDBG() strings more uniform.
189
92eae705e0d1 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 184
diff changeset
24 - Run through ElectricFence, dmalloc, etc...
218
cbd5e308f12d Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 215
diff changeset
25 - Verify thread safety. SDL_sound should be fully reentrant right now, with
cbd5e308f12d Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 215
diff changeset
26 the exception of Sound_NewSample*()...starting two sounds at once can cause
cbd5e308f12d Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 215
diff changeset
27 the internal linked list of currently-decoding samples to scramble.
234
156df33fd7fc Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 230
diff changeset
28 - Fix the crappy rewind implementation in shn.c's SHN_rewind().
23
06a009a1ec9e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 9
diff changeset
29
0
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
30 Decoders to implement:
67
78da63951b29 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 55
diff changeset
31 - .CDA (Does this need specific decoding? Or is a RWops needed?)
78da63951b29 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 55
diff changeset
32 - An mpglib MP3 decoder? (or backend mpglib into SMPEG?)
225
3b4415a39466 Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 220
diff changeset
33 - A c64 SID player?
0
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
34 - ...and more...
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
35
23
06a009a1ec9e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 9
diff changeset
36 Ongoing:
06a009a1ec9e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 9
diff changeset
37 - look for "FIXME"s in the code.
06a009a1ec9e Updated.
Ryan C. Gordon <icculus@icculus.org>
parents: 9
diff changeset
38
0
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
39 /* end of TODO ... */
1078b3528e6f Initial revision
Ryan C. Gordon <icculus@icculus.org>
parents:
diff changeset
40