Programmable real-time audio signal processing application
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

notes.txt 4.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. TODO:
  2. + Use CSV for mod score file format (to eliminate need for labels)
  3. + Autoload of default pgm cfg, program, enable audio, sequence, score location.
  4. + Circuit switcher patch.
  5. + Review and document the app threading and locking during audio file loading.
  6. + Remove old performance evaluation code from cmScore.
  7. + All programs should be able to reload without crashing via enabling/disabling audio.
  8. + Select and save audio devices.
  9. + (done) Mac Conversion
  10. + (done) Live MIDI - to test audio/MIDI delay.
  11. + (done) As threshold increases overall volume decreases - add a compensation algorithm.
  12. + THere are unintialized variable warnings on the release build.
  13. + Add preset delete.
  14. + All uses of va_copy() should have a complimentary va_end()
  15. ** Build a database of measurements and setup the program to be able to
  16. apply a given measurement at it's assigned section.
  17. ** Redevelop spectral distortion algorithm to use a spline as the transform.
  18. ** use Log frequency frequency transform instead of FFT.
  19. ** Add a 'write' preset file button.
  20. ** measurement values can generate MAX_DBL - be sure that are not being sent through to the audio algorithm.
  21. (see ln:965 cmDspKr.c for a hack to fix this)
  22. ** add invert to scale/range .
  23. ** non-grace eveneess are used to generate a measurement value from previous tempo calibration section.
  24. (non-grace evenness notes therefore have two scores: 'evenness' and 'overall-duration').
  25. ** note that the default setting for dyn and even.
  26. ** add dyn,even,tempo,cost number boxes to allow artificial setting of these parameters.
  27. add dyn,even,tempo,cost as modulator variables to allow them to be set from the modulator
  28. With these additions we can simulate apply measurements at the 'application' section.
  29. ** add begining and ending measure numbers to 'seq' labels
  30. ** Gain compensation form mode 4.
  31. Seq 2 m24 Mark 36 & 38
  32. Seq 4: Mark 115
  33. Seq 4: m76-79 Mark 129 (W/ meas: even & dyn -> thresh change min Thresh to 40) - use 4th seq w/ b1
  34. Seq 6: m92 Mark 143
  35. Seq 7: m103 Mark 173
  36. // May 22
  37. + Add invert to scale range to cause output to go in opposite direction.
  38. + Seq 7: Mark 172 Meas 103 - always crashes on playback.
  39. Seq 4: Mark 76 Meas 40 - crash!
  40. Seq 2: First mark meas 23
  41. Crash seems to happen in cmProc4.c: _cmScMatchInitMtx() ln:1311.
  42. It looks like a memory overrun. Looks like the first line is wrong
  43. shouldn't:
  44. if( rn >p->mrn && cn > p->mcn )
  45. be
  46. if(rn*cn > p->mrn*p->mcn)
  47. BUGS:
  48. // Apr 20
  49. The tempo measurement can produce invalid values. Set score to 22 then play Mark 38.
  50. First tempo measurement is a non-sense value - probably produced by an div by zero.
  51. Also: Mark 8, Meas 10.
  52. Crash on playing Mark 37.
  53. Click on list control outside below list item - crash!
  54. Select Mark 171 (Seq 7) Section 43, m103 crash
  55. // Feb 27
  56. + Audio seems to preceded MIDI by around 250ms this probably arises
  57. from a delay that was inserted by 'mas'. Can the delay be removed?
  58. // Feb 25
  59. + Fix the audio file input/output ports
  60. //
  61. // Feb 6 & 7
  62. //
  63. + Performed notes which arrive which about 50ms could be
  64. considered chords. Extra notes notes which were not part of
  65. the chord are probably common and should be discounted during
  66. the cost analysis.
  67. + Add alignment cost as a 4th variable along with dyn,even,tempo.
  68. + In the score print out (score_loc.txt) Section 2 is starting on Bar 5
  69. when it should start inside Bar 7.
  70. + In Take 1 the 2nd dynamics set is not triggered.
  71. + In Take 3 Eveness 2 the C2 and F#4 are NOT missing althrough they are in the
  72. evalation. Also E7 which ends that set is not marked with an 'e'.
  73. + It is possible to have even-non-grace sets where the note rythm value's are not
  74. all the same (e.g. bar 20 )
  75. + User soft-thresholds for the dynamics categories.
  76. + Set 39 even measure 25 shows the first note as G#2 when it should be C#1
  77. + Missig MIDI note sounded:
  78. C1 score-loc:132
  79. A#2 140
  80. A5 173
  81. C#2 195 Marker 36
  82. E5,G33,A#2,C#1 212-218 Marker 36
  83. E3 185 Marker 37
  84. F5,C#4,G#5 986 Marker 204