Reverse parameters to CPPUNIT_ASSERT_EQUAL so its assert
[ardour.git] / libs / ardour / ardour / midi_state_tracker.h
index 5c65c1f018e52e3d31199f380ba39d8b306575a0..64e4aace2d2f66f4d5e82721964582aec52b79ef 100644 (file)
@@ -20,7 +20,6 @@
 #ifndef __ardour_midi_state_tracker_h__
 #define __ardour_midi_state_tracker_h__
 
-#include <bitset>
 #include "ardour/midi_buffer.h"
 
 namespace Evoral {
@@ -41,16 +40,16 @@ public:
        void track (const MidiBuffer::iterator& from, const MidiBuffer::iterator& to, bool& looped);
        void add (uint8_t note, uint8_t chn);
        void remove (uint8_t note, uint8_t chn);
-       void resolve_notes (MidiBuffer& buffer, nframes64_t time);
-       void resolve_notes (Evoral::EventSink<nframes_t>& buffer, nframes64_t time);
+       void resolve_notes (MidiBuffer& buffer, framepos_t time);
+       void resolve_notes (Evoral::EventSink<framepos_t>& buffer, framepos_t time);
        void resolve_notes (MidiSource& src, Evoral::MusicalTime time);
        void dump (std::ostream&);
        void reset ();
        bool empty() const { return _on == 0; }
        uint16_t on() const { return _on; }
-        bool active (uint8_t note, uint8_t channel) { 
-                return _active_notes[(channel*128)+note] > 0;
-        }
+       bool active (uint8_t note, uint8_t channel) {
+               return _active_notes[(channel*128)+note] > 0;
+       }
 
 private:
        void track_note_onoffs(const Evoral::MIDIEvent<MidiBuffer::TimeType>& event);