summaryrefslogtreecommitdiff
path: root/libs/ardour/midi_track.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/midi_track.cc')
-rw-r--r--libs/ardour/midi_track.cc9
1 files changed, 3 insertions, 6 deletions
diff --git a/libs/ardour/midi_track.cc b/libs/ardour/midi_track.cc
index f42181b458..d51e5ef067 100644
--- a/libs/ardour/midi_track.cc
+++ b/libs/ardour/midi_track.cc
@@ -508,9 +508,7 @@ MidiTrack::export_stuff (BufferSet& /*bufs*/, framecnt_t /*nframes*/, framepos_t
boost::shared_ptr<Region>
MidiTrack::bounce (InterThreadInfo& /*itt*/)
{
- throw;
- // vector<MidiSource*> srcs;
- // return _session.write_one_track (*this, 0, _session.current_end_frame(), false, srcs, itt);
+ std::cerr << "MIDI bounce currently unsupported" << std::endl;
return boost::shared_ptr<Region> ();
}
@@ -518,15 +516,14 @@ MidiTrack::bounce (InterThreadInfo& /*itt*/)
boost::shared_ptr<Region>
MidiTrack::bounce_range (framepos_t /*start*/, framepos_t /*end*/, InterThreadInfo& /*itt*/, bool /*enable_processing*/)
{
- throw;
- //vector<MidiSource*> srcs;
- //return _session.write_one_track (*this, start, end, false, srcs, itt);
+ std::cerr << "MIDI bounce range currently unsupported" << std::endl;
return boost::shared_ptr<Region> ();
}
void
MidiTrack::freeze_me (InterThreadInfo& /*itt*/)
{
+ std::cerr << "MIDI freeze currently unsupported" << std::endl;
}
void