From 08fffeffec10beb708610fd35eb9e7c35365d446 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 6 Nov 2016 22:04:35 -0500 Subject: Remove Evoral::MIDIEvent It is slightly questionable whether type specific methods like velocity() belong on Event at all, these may be better off as free functions. However the code currently uses them as methods in many places, and it seems like a step in the right direction, since, for example, we might some day have events that have a velocity but aren't stored as MIDI messages (e.g. if Ardour uses an internal musical model that is more expressive). In any case, the former inheritance and plethora of sloppy casts is definitely not the right thing. --- libs/ardour/midi_channel_filter.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/ardour/midi_channel_filter.cc') diff --git a/libs/ardour/midi_channel_filter.cc b/libs/ardour/midi_channel_filter.cc index 40658802e5..f81c57fef7 100644 --- a/libs/ardour/midi_channel_filter.cc +++ b/libs/ardour/midi_channel_filter.cc @@ -42,7 +42,7 @@ MidiChannelFilter::filter(BufferSet& bufs) MidiBuffer& buf = bufs.get_midi(0); for (MidiBuffer::iterator e = buf.begin(); e != buf.end(); ) { - Evoral::MIDIEvent ev(*e, false); + Evoral::Event ev(*e, false); if (ev.is_channel_event()) { switch (mode) { -- cgit v1.2.3