remove messages when tempo map is not available in RT context
authorPaul Davis <paul@linuxaudiosystems.com>
Fri, 6 Jan 2012 20:29:18 +0000 (20:29 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Fri, 6 Jan 2012 20:29:18 +0000 (20:29 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@11175 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/ardour/session_process.cc
libs/ardour/session_time.cc

index 1055a7c504397508f582d85797ab02cce05fca9d..4876dc7931249953db79fe9b2c5047a3ae642da0 100644 (file)
@@ -86,7 +86,7 @@ Session::process (pframes_t nframes)
                timecode_time(transport_frames, transport_timecode);
                tick (transport_frames, transport_bbt, transport_timecode); /* EMIT SIGNAL */
        } catch (...) {
-               warning << _("Missed MIDI Clock tick due to problems with tempo map") << endmsg;
+               /* don't bother with a message */
        }
 
        SendFeedback (); /* EMIT SIGNAL */
index 205e2a0ba4d9c892c07cb327081cfe750f7a1e54..eef05e879a0f41cbb2534f8b022dca74639d5658 100644 (file)
@@ -502,7 +502,7 @@ Session::jack_timebase_callback (jack_transport_state_t /*state*/,
                        pos->valid = jack_position_bits_t (pos->valid | JackPositionBBT);
 
                } catch (...) {
-                       warning << _("failed to set tempo map information for JACK due to issues with tempo map") << endmsg;
+                       /* no message */
                }
        }