summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libs/ardour/ardour/midi_model.h15
-rw-r--r--libs/ardour/automation_event.cc1
-rw-r--r--libs/ardour/midi_model.cc72
-rw-r--r--libs/ardour/midi_track.cc3
4 files changed, 58 insertions, 33 deletions
diff --git a/libs/ardour/ardour/midi_model.h b/libs/ardour/ardour/midi_model.h
index af506e1f08..1382e3b8df 100644
--- a/libs/ardour/ardour/midi_model.h
+++ b/libs/ardour/ardour/midi_model.h
@@ -39,8 +39,18 @@ class Session;
class MidiSource;
// x , y
-typedef std::pair<boost::shared_ptr<const AutomationList>, std::pair<double,double> >
- MidiControlIterator;
+class MidiControlIterator {
+public:
+ boost::shared_ptr<const AutomationList> automation_list;
+ double x;
+ double y;
+
+ MidiControlIterator(
+ boost::shared_ptr<const AutomationList> the_automation_list,
+ double my_x,
+ double my_y) : automation_list(the_automation_list), x(my_x), y(my_y)
+ {}
+};
/** This is a slightly higher level (than MidiBuffer) model of MIDI note data.
@@ -57,7 +67,6 @@ class MidiModel : public boost::noncopyable, public Automatable {
public:
MidiModel(MidiSource *s, size_t size=0);
- // This is crap.
void write_lock();
void write_unlock();
void read_lock() const;
diff --git a/libs/ardour/automation_event.cc b/libs/ardour/automation_event.cc
index 99e44340c5..a3edc9dcde 100644
--- a/libs/ardour/automation_event.cc
+++ b/libs/ardour/automation_event.cc
@@ -395,6 +395,7 @@ AutomationList::fast_simple_add (double when, double value)
{
/* to be used only for loading pre-sorted data from saved state */
_events.insert (_events.end(), new ControlEvent (when, value));
+ assert(_events.back());
}
void
diff --git a/libs/ardour/midi_model.cc b/libs/ardour/midi_model.cc
index 31f9f2f576..eea936e05b 100644
--- a/libs/ardour/midi_model.cc
+++ b/libs/ardour/midi_model.cc
@@ -87,8 +87,7 @@ MidiModel::const_iterator::const_iterator(const MidiModel& model, double t)
}
}
- MidiControlIterator earliest_control = make_pair(boost::shared_ptr<AutomationList>(),
- make_pair(DBL_MAX, 0.0));
+ MidiControlIterator earliest_control(boost::shared_ptr<AutomationList>(), DBL_MAX, 0.0);
_control_iters.reserve(model.controls().size());
for (Automatable::Controls::const_iterator i = model.controls().begin();
@@ -108,12 +107,12 @@ MidiModel::const_iterator::const_iterator(const MidiModel& model, double t)
assert(y >= 0);
assert(y <= UINT8_MAX);
- const MidiControlIterator new_iter = make_pair(i->second->list(), make_pair(x, y));
+ const MidiControlIterator new_iter(i->second->list(), x, y);
//cerr << "MIDI Iterator: CC " << i->first.id() << " added (" << x << ", " << y << ")" << endl;
_control_iters.push_back(new_iter);
- if (x < earliest_control.second.first) {
+ if (x < earliest_control.x) {
earliest_control = new_iter;
_control_iter = _control_iters.end();
--_control_iter;
@@ -127,7 +126,7 @@ MidiModel::const_iterator::const_iterator(const MidiModel& model, double t)
++_note_iter;
}
- if (earliest_control.first && earliest_control.second.first < _event.time())
+ if (earliest_control.automation_list && earliest_control.x < _event.time())
model.control_to_midi_event(_event, earliest_control);
else
_control_iter = _control_iters.end();
@@ -151,7 +150,6 @@ MidiModel::const_iterator::~const_iterator()
_model->read_unlock();
}
}
-
const MidiModel::const_iterator&
MidiModel::const_iterator::operator++()
@@ -161,20 +159,25 @@ MidiModel::const_iterator::operator++()
assert(_event.is_note() || _event.is_cc());
+ // TODO: This code crashes at the marked section
+ /*
// Increment past current control event
- if (_control_iter != _control_iters.end() && _control_iter->first && _event.is_cc()) {
+ if (_control_iter != _control_iters.end() && _control_iter->automation_list && _event.is_cc()) {
double x, y;
- const bool ret = _control_iter->first->rt_safe_earliest_event_unlocked(
- _control_iter->second.first, DBL_MAX, x, y, false);
+ cerr << "control_iter x:" << _control_iter->x << " y:" << _control_iter->y << endl;
+ // v--- this crashes because of a null pointer in the stl containers linked list chain
+ // the crash occurs in _control_iter->automation_list->size();
+ const bool ret = _control_iter->automation_list->rt_safe_earliest_event_unlocked(
+ _control_iter->x, DBL_MAX, x, y, false);
if (ret) {
- //cerr << "Incremented " << _control_iter->first->parameter().id() << " to " << x << endl;
- _control_iter->second.first = x;
- _control_iter->second.second = y;
+ //cerr << "Incremented " << _control_iter->automation_list->parameter().id() << " to " << x << endl;
+ _control_iter->x = x;
+ _control_iter->x = y;
} else {
- //cerr << "Hit end of " << _control_iter->first->parameter().id() << endl;
- _control_iter->first.reset();
- _control_iter->second.first = DBL_MAX;
+ //cerr << "Hit end of " << _control_iter->automation_list->parameter().id() << endl;
+ _control_iter->automation_list.reset();
+ _control_iter->x = DBL_MAX;
}
}
@@ -184,11 +187,13 @@ MidiModel::const_iterator::operator++()
for (std::vector<MidiControlIterator>::iterator i = _control_iters.begin();
i != _control_iters.end(); ++i) {
- if (i->second.first < _control_iter->second.first) {
+ if (i->x < _control_iter->x) {
_control_iter = i;
}
}
+ */
+
enum Type { NIL, NOTE_ON, NOTE_OFF, CC };
Type type = NIL;
@@ -200,7 +205,6 @@ MidiModel::const_iterator::operator++()
t = (*_note_iter)->time();
}
- cerr << " operator++ before test: size active notes: " << _active_notes.size() << " is empty: " << _active_notes.empty() << endl;
// Use the next earliest note off iff it's earlier than the note on
if (_model->note_mode() == Sustained && (! _active_notes.empty())) {
if (type == NIL || _active_notes.top()->end_time() <= (*_note_iter)->time()) {
@@ -209,10 +213,12 @@ MidiModel::const_iterator::operator++()
}
}
+ /* disabled for above mentioned reason, this loops endlessly otherwise
// Use the next earliest controller iff it's earlier than the note event
- if (_control_iter != _control_iters.end() && _control_iter->second.first != DBL_MAX)
- if (type == NIL || _control_iter->second.first < t)
+ if (_control_iter != _control_iters.end() && _control_iter->x != DBL_MAX)
+ if (type == NIL || _control_iter->x < t)
type = CC;
+ */
if (type == NOTE_ON) {
cerr << "********** MIDI Iterator = note on" << endl;
@@ -327,18 +333,18 @@ MidiModel::read(MidiRingBuffer& dst, nframes_t start, nframes_t nframes, nframes
bool
MidiModel::control_to_midi_event(MIDI::Event& ev, const MidiControlIterator& iter) const
{
- if (iter.first->parameter().type() == MidiCCAutomation) {
+ if (iter.automation_list->parameter().type() == MidiCCAutomation) {
if (ev.size() < 3)
ev.set_buffer((Byte*)malloc(3), true);
- assert(iter.first);
- assert(iter.first->parameter().channel() < 16);
- assert(iter.first->parameter().id() <= INT8_MAX);
- assert(iter.second.second <= INT8_MAX);
- ev.buffer()[0] = MIDI_CMD_CONTROL + iter.first->parameter().channel();
- ev.buffer()[1] = (Byte)iter.first->parameter().id();
- ev.buffer()[2] = (Byte)iter.second.second;
- ev.time() = iter.second.first; // x
+ assert(iter.automation_list);
+ assert(iter.automation_list->parameter().channel() < 16);
+ assert(iter.automation_list->parameter().id() <= INT8_MAX);
+ assert(iter.y <= INT8_MAX);
+ ev.buffer()[0] = MIDI_CMD_CONTROL + iter.automation_list->parameter().channel();
+ ev.buffer()[1] = (Byte)iter.automation_list->parameter().id();
+ ev.buffer()[2] = (Byte)iter.y;
+ ev.time() = iter.x;
ev.size() = 3;
return true;
} else {
@@ -417,6 +423,7 @@ void
MidiModel::append(const MIDI::Event& ev)
{
write_lock();
+ _edited = true;
assert(_notes.empty() || ev.time() >= _notes.back()->time());
assert(_writing);
@@ -442,6 +449,7 @@ MidiModel::append_note_on_unlocked(uint8_t chan, double time, uint8_t note_num,
assert(chan < 16);
assert(_writing);
+ _edited = true;
_notes.push_back(boost::shared_ptr<Note>(new Note(chan, time, 0, note_num, velocity)));
if (_note_mode == Sustained) {
@@ -461,6 +469,7 @@ MidiModel::append_note_off_unlocked(uint8_t chan, double time, uint8_t note_num)
assert(chan < 16);
assert(_writing);
+ _edited = true;
if (_note_mode == Percussive) {
cerr << "MidiModel Ignoring note off (percussive mode)" << endl;
@@ -496,11 +505,12 @@ MidiModel::append_note_off_unlocked(uint8_t chan, double time, uint8_t note_num)
void
MidiModel::append_cc_unlocked(uint8_t chan, double time, uint8_t number, uint8_t value)
{
- /*cerr << "MidiModel " << this << " chan " << (int)chan <<
- " CC " << (int)number << " = " << (int)value << " @ " << time << endl;*/
+ cerr << "MidiModel " << this << " chan " << (int)chan <<
+ " CC " << (int)number << " = " << (int)value << " @ " << time << endl;
assert(chan < 16);
assert(_writing);
+ _edited = true;
Parameter param(MidiCCAutomation, number, chan);
@@ -513,6 +523,7 @@ void
MidiModel::add_note_unlocked(const boost::shared_ptr<Note> note)
{
//cerr << "MidiModel " << this << " add note " << (int)note.note() << " @ " << note.time() << endl;
+ _edited = true;
Notes::iterator i = upper_bound(_notes.begin(), _notes.end(), note, note_time_comparator);
_notes.insert(i, note);
}
@@ -521,6 +532,7 @@ MidiModel::add_note_unlocked(const boost::shared_ptr<Note> note)
void
MidiModel::remove_note_unlocked(const boost::shared_ptr<const Note> note)
{
+ _edited = true;
//cerr << "MidiModel " << this << " remove note " << (int)note.note() << " @ " << note.time() << endl;
for(Notes::iterator n = _notes.begin(); n != _notes.end(); ++n) {
Note& _n = *(*n);
diff --git a/libs/ardour/midi_track.cc b/libs/ardour/midi_track.cc
index cbd9c52bf6..9cdf36144b 100644
--- a/libs/ardour/midi_track.cc
+++ b/libs/ardour/midi_track.cc
@@ -428,6 +428,9 @@ MidiTrack::no_roll (nframes_t nframes, nframes_t start_frame, nframes_t end_fram
passthru (start_frame, end_frame, nframes, offset, 0, (_meter_point == MeterInput));
}
+ // stop all sounds
+ midi_panic();
+
return 0;
}