Programmable real-time audio signal processing application
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

notes.txt 5.1KB

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