Newer
Older
monitord / lame-3.97 / TODO
  1. 1. bug in resample code: downsampling from 44101 to 44100 causes
  2. a seg fault. Workaround in place for now: resampling disabled
  3. if input/output samplerates agree to 4 digits.
  4.  
  5.  
  6.  
  7. 2. high bitrate encodings have trouble on some hardware players.
  8. Track this down. Probably caused by --strictly-enforce-ISO and
  9. IXMAX_VAL. Try setting IXMAX_VAL back to 8191 and/or
  10. maxmp3buf=8*960 to see if there is a working combination.
  11.  
  12. note: one of the decoder bugs was identified. It is caused by using
  13. different block sizes on both channels. A parameter need to be
  14. added to Lame to handle workarounds.
  15.  
  16.  
  17. 3 frontend: code is a complete mess. But it has so many debugged
  18. features it will be a lot of work to re-write.
  19.  
  20.  
  21. 4. MSVC project files. It would be nice to create a working
  22. MSVC6 workspace, which included all the projects as possible
  23. targets:
  24. lame.exe
  25. mp3x.exe (require GTK libs)
  26. lame_enc.dll
  27. ACM codec
  28. directshow codec
  29.  
  30. I think the only MSVC5 project that we need to preserve is
  31. for lame_enc.dll, since Albert Faber (still?) doesn't use VC6?
  32. But no reason we cant have VC5 and VC6 project files for the dll.
  33.  
  34.  
  35.  
  36.  
  37. 5.
  38. NOGAP encoding:
  39.  
  40. -nogap: more testing, fix options, test id3 tags?
  41. Can we change id3 tags without reseting the encoder??
  42. At the end of encoding 1.wav, call lame_get_mf_samples_to_encode()
  43. to find the number of non encoded buffered PCM samples. Then
  44. encode samples from 2.wav until these PCM samples have been
  45. encoded, *THEN* call lame_encode_flush_nogap() and close
  46. out file 1.mp3.
  47.  
  48.  
  49. NOGAP decoding:
  50. lame --decode --nogap file1.mp3 file2.mp3 file3.mp3
  51. should also work. What needs to be done:
  52. get_audio.c: We need a way to open a second mp3 file, without
  53. calling lame_decode_init() and reinitializing mpglib.
  54. And the mpglib needs to know to look for new Xing
  55. tags at the beginning of file2.mp3 and file3.mp3.
  56.  
  57.  
  58.  
  59. 6.
  60. Does stdin work when LAME is compiled to use libsndfile?
  61. (new version of libsndfile will support this - try this out)
  62.  
  63.  
  64. 7.
  65. LAME has problems with pure DC input. i.e. a square wave with
  66. a frequency well below 20 Hz. Not very important, but it should
  67. be fixed.
  68.  
  69.  
  70. 8.
  71. mgplib has bugs with i-stereo. flag denoting invalid
  72. i-stereo value (= frame is m/s stereo) is not correct.
  73.  
  74. 9.
  75. lowpass filter: for M/S stereo, use more filtering for the side
  76. channel, less filtering for mid channel. We need to first replace
  77. the polyphase filter with an FIR lowpass filter with finer frequency
  78. resolution before implementing this.
  79.  
  80. 10.
  81. LAME has a 31 point FIR filter used for resampling, which
  82. can also be used as a lowpass. When resampling is done,
  83. use that filter to also lowpass instead of the polyphase filter.
  84.  
  85. 11.
  86. Even when resampling is not needed, should we use an FIR filter
  87. for the lowpass? If it is not too much slower, yes. If it
  88. is slower, then it should be an option since it will produce
  89. higher quality.
  90.  
  91. 12.
  92. We should consider moving the experts options from the *long
  93. help* text into an *experts only* help text. The average Joe gets
  94. knocked down by the huge number of possibilities to setup lame.
  95.  
  96.  
  97.  
  98.  
  99. 50.
  100. Better tonality estimation.
  101. Gpsycho uses predictability, and so needs a delay to detect the tonality
  102. of a sound.
  103. Nspsytune seems to miss tonals when several of them are too narrow.
  104. We would probably need the best of both.
  105.  
  106.  
  107.  
  108.  
  109. 60.
  110. Different ATH handling for sfb21. We are using the minimum value of ath
  111. in each whole sfb. in sfb21 this leads to very high bitrates.
  112. We could perhaps use 2 or 3 ath partitions in sfb21
  113.  
  114. note: partially done
  115.  
  116.  
  117.  
  118. 70.
  119. Use mixed blocks.
  120.  
  121.  
  122.  
  123.  
  124. 90.
  125. Use intensity stereo. This is a must-have for low bitrates, but if the
  126. algorythm is very good it could also be used in every case.
  127. Note: mpg123 (and all derivatives, like xmms and lame/mpglib)
  128. have bugs in the intensity stereo decoding. Bugs have been there
  129. for years since there are very few intensity stereo mp3's out there.
  130.  
  131.  
  132.  
  133.  
  134.  
  135. 998.
  136. Merge GOGO's fast assembler routines.
  137.  
  138.  
  139.  
  140.  
  141. 999.
  142. It would be nice to save some information whilst encoding
  143. a: wave -> mp3
  144. a RIFF/wave can contain LIST chunks with information
  145. about author, title, etc.
  146. ==> could go into TAG fields of resulting mp3
  147. b: mp3 -> mp3
  148. ==> we could copy the TAG directly
  149. c: mp3 -> wave
  150. ==> copy TAG into LIST chunk
  151.  
  152.  
  153.  
  154. 1500.
  155. Integrate plusV extensions
  156.  
  157.  
  158.  
  159. 2000.
  160. To be able to encode as fast as FastEnc