| 21 | { |
| 22 | public: |
| 23 | typedef struct Event { |
| 24 | double startTime; |
| 25 | double endTime; |
| 26 | int startFrame; |
| 27 | int endFrame; |
| 28 | int pitch; // pitch is not in Hz, but in "MIDI note number" |
| 29 | double amplitude; |
| 30 | std::vector<int> bends; // One vale of pitch bend per frame. Units is 1/3 of semitones. |
| 31 | |
| 32 | bool operator==(const struct Event&) const; |
| 33 | } Event; |
| 34 | |
| 35 | typedef struct ConvertParams { |
| 36 | /* Note segmentation (0.05 - 0.95, Split-Merge Notes) */ |
nothing calls this directly
no outgoing calls
no test coverage detected