home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 13 / AACD13.ISO / AACD / Sound / LAME / src / TODO < prev    next >
Text File  |  2000-07-31  |  1KB  |  50 lines

  1. 0.   ./configure script
  2.  
  3. things to check for:  
  4.  
  5.    -lncurses
  6.    -llibsndfile      (allow user to enable)
  7.    -lvorbis          (allow user to disable)
  8.    -lGTK             (allow user to disable)
  9.    architecture depending optimization(like assembler code)
  10.    make depend option for CC
  11.  
  12.  
  13.  
  14.  
  15. 1.
  16. Does stdin work when LAME is compiled to use libsndfile? 
  17. (new version of libsndfile will support this - try this out)
  18.  
  19.  
  20. 2. 
  21. LAME has problems with pure DC input.  i.e. a square wave with
  22. a frequency well below 20Hz.  Not very important, but it should
  23. be fixed.
  24.  
  25. 3. 
  26. Replace internal representation of PCM data to floating point
  27. (instead of short int).  This will help filtering (which
  28. has to convert back and forth) and allow lame to handle
  29. other than 16 bit input.   Also, modify mpglib to output
  30. floating point and have finaly quantization step a
  31. easy-to-change module so it can output other than 16bit.
  32.  
  33.  
  34.  
  35. 998.
  36. Merge GOGO's fast assembler routines.
  37.  
  38. 999.
  39. It would be nice to save some information whilst encoding
  40. a: wave -> mp3
  41.     a RIFF/wave can contain LIST chunks with information
  42.     about author, title, etc. 
  43.     ==> could go into TAG fields of resulting mp3
  44. b: mp3 -> mp3
  45.     ==> we could copy the TAG directly
  46. c: mp3 <-> ogg
  47.     ==> copy TAG info into oggs info field and vice versa
  48. d: mp3 -> wave
  49.     ==> copy TAG into LIST chunk
  50.