/* * Copyright (C) 2008-2013 Hans Baier * Copyright (C) 2009-2010 Carl Hetherington * Copyright (C) 2009-2012 David Robillard * Copyright (C) 2009-2019 Paul Davis * Copyright (C) 2012-2013 Robin Gareus * Copyright (C) 2013-2018 John Emmas * Copyright (C) 2015-2016 Nick Mainsbridge * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include #include #include #include #include "pbd/error.h" #include "pbd/failed_constructor.h" #include "pbd/pthread_utils.h" #include "pbd/convert.h" #include "midi++/port.h" #include "ardour/audioengine.h" #include "ardour/debug.h" #include "ardour/midi_buffer.h" #include "ardour/midi_port.h" #include "ardour/session.h" #include "ardour/tempo.h" #include "ardour/transport_master.h" #include "ardour/transport_master_manager.h" #include "pbd/i18n.h" using namespace std; using namespace ARDOUR; using namespace MIDI; using namespace PBD; #define ENGINE AudioEngine::instance() MIDIClock_TransportMaster::MIDIClock_TransportMaster (std::string const & name, int ppqn) : TransportMaster (MIDIClock, name) , ppqn (ppqn) , midi_clock_count (0) , _running (false) , _bpm (0) { } MIDIClock_TransportMaster::~MIDIClock_TransportMaster() { port_connections.drop_connections (); } void MIDIClock_TransportMaster::init () { reset (false); resync_latency (false); } void MIDIClock_TransportMaster::connection_handler (std::weak_ptr w0, std::string n0, std::weak_ptr w1, std::string n1, bool con) { TransportMaster::connection_handler(w0, n0, w1, n1, con); std::shared_ptr p = w1.lock (); if (p == _port) { resync_latency (false); } } void MIDIClock_TransportMaster::create_port () { if ((_port = create_midi_port (string_compose ("%1 in", _name))) == 0) { throw failed_constructor(); } } void MIDIClock_TransportMaster::set_session (Session* s) { TransportMaster::set_session (s); TransportMasterViaMIDI::set_session (s); port_connections.drop_connections(); /* only connect to signals if we have a proxy, because otherwise we * cannot interpet incoming data (no tempo map etc.) */ if (_session) { parser.timing.connect_same_thread (port_connections, boost::bind (&MIDIClock_TransportMaster::update_midi_clock, this, _1, _2)); parser.start.connect_same_thread (port_connections, boost::bind (&MIDIClock_TransportMaster::start, this, _1, _2)); parser.contineu.connect_same_thread (port_connections, boost::bind (&MIDIClock_TransportMaster::contineu, this, _1, _2)); parser.stop.connect_same_thread (port_connections, boost::bind (&MIDIClock_TransportMaster::stop, this, _1, _2)); parser.position.connect_same_thread (port_connections, boost::bind (&MIDIClock_TransportMaster::position, this, _1, _2, _3, _4)); reset (true); } } void MIDIClock_TransportMaster::pre_process (MIDI::pframes_t nframes, samplepos_t now, boost::optional session_pos) { /* Read and parse incoming MIDI */ if (!_midi_port) { _bpm = 0.0; _running = false; _current_delta = 0; midi_clock_count = 0; DEBUG_TRACE (DEBUG::MidiClock, "No MIDI Clock port registered"); return; } DEBUG_TRACE (DEBUG::MidiClock, string_compose ("preprocess with lt = %1 @ %2, running ? %3\n", current.timestamp, now, _running)); /* no clock messages ever, or no clock messages for 1/4 second ? conclude that its stopped */ if (!current.timestamp || one_ppqn_in_samples == 0 || (now > current.timestamp && ((now - current.timestamp) > (ENGINE->sample_rate() / 4)))) { _bpm = 0.0; _running = false; _current_delta = 0; midi_clock_count = 0; DEBUG_TRACE (DEBUG::MidiClock, string_compose ("No MIDI Clock messages received for some time, stopping! ts = %1 @ %2 ppqn = %3\n", current.timestamp, now, one_ppqn_in_samples)); } _midi_port->read_and_parse_entire_midi_buffer_with_no_speed_adjustment (nframes, parser, now); if (session_pos) { const samplepos_t current_pos = current.position + ((now - current.timestamp) * current.speed); _current_delta = current_pos - *session_pos; } else { _current_delta = 0; } DEBUG_TRACE (DEBUG::MidiClock, string_compose ("speed_and_position: speed %1 should-be %2 transport %3 \n", current.speed, current.position, _session->transport_sample())); } void MIDIClock_TransportMaster::calculate_one_ppqn_in_samples_at(samplepos_t time) { const Temporal::TempoMetric& metric = Temporal::TempoMap::use()->metric_at (timepos_t (time)); const double samples_per_quarter_note = metric.tempo().samples_per_quarter_note (ENGINE->sample_rate()); one_ppqn_in_samples = samples_per_quarter_note / double (ppqn); // DEBUG_TRACE (DEBUG::MidiClock, string_compose ("at %1, one ppqn = %2 [spl] spqn = %3, ppqn = %4\n", time, one_ppqn_in_samples, samples_per_quarter_note, ppqn)); } ARDOUR::samplepos_t MIDIClock_TransportMaster::calculate_song_position(uint16_t song_position_in_sixteenth_notes) { samplepos_t song_position_samples = 0; for (uint16_t i = 1; i <= song_position_in_sixteenth_notes; ++i) { // one quarter note contains ppqn pulses, so a sixteenth note is ppqn / 4 pulses calculate_one_ppqn_in_samples_at(song_position_samples); song_position_samples += one_ppqn_in_samples * (samplepos_t)(ppqn / 4); } return song_position_samples; } void MIDIClock_TransportMaster::calculate_filter_coefficients (double qpm) { const double omega = 2.0 * M_PI * (60 / qpm) / 24; b = 1.4142135623730950488 * omega; // sqrt (2.0) * omega c = omega * omega; DEBUG_TRACE (DEBUG::MidiClock, string_compose ("DLL coefficients: omega:%1 b:%2 c:%3\n", omega, b, c)); } void MIDIClock_TransportMaster::update_midi_clock (Parser& /*parser*/, samplepos_t timestamp) { #ifndef NDEBUG samplepos_t elapsed_since_start = timestamp - first_timestamp; #endif calculate_one_ppqn_in_samples_at (current.position); DEBUG_TRACE (DEBUG::MidiClock, string_compose ("clock count %1, sbp %2\n", midi_clock_count, current.position)); if (midi_clock_count == 0) { /* second 0xf8 message after start/reset has arrived */ first_timestamp = timestamp; current.update (current.position, timestamp, 0); DEBUG_TRACE (DEBUG::MidiClock, string_compose ("first clock message after start received @ %1\n", timestamp)); midi_clock_count++; } else if (midi_clock_count == 1) { /* second 0xf8 message has arrived. we can now estimate QPM * (quarters per minute, and fully initialize the DLL */ e2 = timestamp - current.timestamp; const samplecnt_t samples_per_quarter = e2 * ppqn; double bpm = (ENGINE->sample_rate() * 60.0) / samples_per_quarter; if (bpm < 1 || bpm > 999) { current.update (current.position, timestamp, 0); midi_clock_count = 1; /* start over */ DEBUG_TRACE (DEBUG::MidiClock, string_compose ("BPM is out of bounds (%1)\n", timestamp, current.timestamp)); } else { _bpm = bpm; /* finish DLL initialization */ calculate_filter_coefficients (500.0); // do not rely on initial bpm, but assume a realistic BW t0 = timestamp; t1 = t0 + e2; /* timestamp we predict for the next 0xf8 clock message */ midi_clock_count++; current.update (current.position + one_ppqn_in_samples + midi_port_latency.max, timestamp, 0); } } else { /* 3rd or later MIDI clock message. We can now compute actual * speed (and tempo) with the DLL */ double e = timestamp - t1; // error between actual time of arrival of clock message and our predicted time t0 = t1; t1 += b * e + e2; e2 += c * e; const double samples_per_quarter = (t1 - t0) * ppqn; _bpm = (ENGINE->sample_rate() * 60.0) / samples_per_quarter; double mr = Config->get_midi_clock_resolution(); if (mr == 1.) { _bpm = round (_bpm); } else if (mr != 0.) { _bpm -= fmod (_bpm, mr); } /* when rolling speed is always 1.0. The transport moves at wall-clock * speed. What changes is the music-time (BPM), not the speed. */ if (_session && _session->config.get_external_sync() && TransportMasterManager::instance().current().get() == this) { /* TODO always set tempo, even when there is a map */ _session->maybe_update_tempo_from_midiclock_tempo (_bpm); } calculate_one_ppqn_in_samples_at (current.position); midi_clock_count++; if (_running) { DEBUG_TRACE (DEBUG::MidiClock, string_compose ("mclock running with speed = %1 bpm = %2\n", (t1 - t0) / one_ppqn_in_samples, _bpm)); current.update (current.position + one_ppqn_in_samples, timestamp, 1.0); } else { DEBUG_TRACE (DEBUG::MidiClock, string_compose ("mclock stopped speed = %1 bpm = %2\n", (t1 - t0) / one_ppqn_in_samples, _bpm)); current.update (current.position, timestamp, 0); } } DEBUG_TRACE (DEBUG::MidiClock, string_compose ( "clock #%1 @ %2 should-be %3 transport %4 appspeed %5 " "read-delta %6 should-be-delta %7 t1-t0 %8 t0 %9 t1 %10 sample-rate %11 engine %12 running %13\n", midi_clock_count, // # elapsed_since_start, // @ current.position, // should-be _session->transport_sample(), // transport (t1 - t0) / one_ppqn_in_samples, // appspeed timestamp - current.timestamp, // read delta one_ppqn_in_samples, // should-be delta (t1 - t0), // t1-t0 t0, // t0 (current position) t1, // t1 (expected next pos) ENGINE->sample_rate(), // framerate ENGINE->sample_time(), _running )); } void MIDIClock_TransportMaster::start (Parser& /*parser*/, samplepos_t timestamp) { DEBUG_TRACE (DEBUG::MidiClock, string_compose ("MIDIClock_TransportMaster got start message at time %1 engine time %2 transport_sample %3\n", timestamp, ENGINE->sample_time(), _session->transport_sample())); if (_running) { return; } _running = true; current.update (0, current.timestamp, 0); } void MIDIClock_TransportMaster::reset (bool with_position) { DEBUG_TRACE (DEBUG::MidiClock, string_compose ("MidiClock Master reset(): calculated filter for period size %2\n", ENGINE->samples_per_cycle())); if (with_position) { current.update (_session->transport_sample(), 0, 0); } else { current.reset (); } _running = false; _current_delta = 0; midi_clock_count = 0; } void MIDIClock_TransportMaster::contineu (Parser& /*parser*/, samplepos_t /*timestamp*/) { DEBUG_TRACE (DEBUG::MidiClock, "MIDIClock_TransportMaster got continue message\n"); _running = true; } void MIDIClock_TransportMaster::stop (Parser& /*parser*/, samplepos_t timestamp) { DEBUG_TRACE (DEBUG::MidiClock, "MIDIClock_TransportMaster got stop message\n"); if (_running) { _running = false; // we need to go back to the last MIDI beat (6 ppqn) // and lets hope the tempo didnt change in the meantime :) // begin at the should be position, because // that is the position of the last MIDI Clock // message and that is probably what the master // expects where we are right now // // find out the last MIDI beat: go back #midi_clocks mod 6 // and lets hope the tempo didnt change in those last 6 beats :) current.update (current.position - (midi_clock_count % 6) * one_ppqn_in_samples, current.timestamp, 0); } } void MIDIClock_TransportMaster::position (Parser& /*parser*/, MIDI::byte* message, size_t size, samplepos_t timestamp) { // we are not supposed to get position messages while we are running // so lets be robust and ignore those if (_running) { return; } assert(size == 3); MIDI::byte lsb = message[1]; MIDI::byte msb = message[2]; assert((lsb <= 0x7f) && (msb <= 0x7f)); /* Each MIDI Beat spans 6 MIDI Clocks. * In other words, each MIDI Beat is a 16th note (since there are 24 MIDI * Clocks in a quarter note, therefore 4 MIDI Beats also fit in a quarter). * So, a master can sync playback to a resolution of any particular 16th note. */ uint16_t position_in_sixteenth_notes = (uint16_t(msb) << 7) | uint16_t(lsb); samplepos_t position_in_samples = calculate_song_position(position_in_sixteenth_notes); DEBUG_TRACE (DEBUG::MidiClock, string_compose ("Song Position: %1 samples: %2\n", position_in_sixteenth_notes, position_in_samples)); current.update (position_in_samples + midi_port_latency.max, current.timestamp, 0); } bool MIDIClock_TransportMaster::locked () const { return true; } bool MIDIClock_TransportMaster::ok() const { return true; } ARDOUR::samplecnt_t MIDIClock_TransportMaster::update_interval() const { if (one_ppqn_in_samples) { return resolution (); } return AudioEngine::instance()->sample_rate() / 120 / 4; /* pure guesswork */ } ARDOUR::samplecnt_t MIDIClock_TransportMaster::resolution() const { // one beat return (samplecnt_t) one_ppqn_in_samples * ppqn; } std::string MIDIClock_TransportMaster::position_string () const { return std::string(); } std::string MIDIClock_TransportMaster::delta_string() const { SafeTime last; current.safe_read (last); if (last.timestamp == 0 || starting()) { return X_(u8"\u2012\u2012\u2012\u2012"); } else { return format_delta_time (_current_delta); } } void MIDIClock_TransportMaster::unregister_port () { _midi_port.reset (); TransportMaster::unregister_port (); }