summaryrefslogtreecommitdiff
path: root/spec/midi.fspec
blob: 2c469441fb1c8ef59b2e20ca50bdeafc8618a22e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
struct midi_track {
  u8 type[4] | matches('MTrk') str;
  u32 length;
  u8 data[length];
};

struct midi {
  u8 type[4] | matches('MThd') str;
  u32 length | matches(6);
  u16 format;
  u16 track_count;
  u16 division;
  struct midi_track tracks[track_count];
};