mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-21 14:16:31 +01:00
more debugging
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2823 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
39444b94fd
commit
9a45f09e15
1 changed files with 4 additions and 1 deletions
|
|
@ -76,6 +76,10 @@ Session::request_slave_source (SlaveSource src)
|
||||||
void
|
void
|
||||||
Session::request_transport_speed (float speed)
|
Session::request_transport_speed (float speed)
|
||||||
{
|
{
|
||||||
|
if (speed != 0.0 && speed != 1.0) {
|
||||||
|
cerr << "odd speed requested\n";
|
||||||
|
stacktrace (cerr, 20);
|
||||||
|
}
|
||||||
Event* ev = new Event (Event::SetTransportSpeed, Event::Add, Event::Immediate, 0, speed);
|
Event* ev = new Event (Event::SetTransportSpeed, Event::Add, Event::Immediate, 0, speed);
|
||||||
queue_event (ev);
|
queue_event (ev);
|
||||||
}
|
}
|
||||||
|
|
@ -816,7 +820,6 @@ Session::set_transport_speed (float speed, bool abort)
|
||||||
|
|
||||||
if ((synced_to_jack()) && speed != 0.0 && speed != 1.0) {
|
if ((synced_to_jack()) && speed != 0.0 && speed != 1.0) {
|
||||||
cerr << "synced to jack and speed == " << speed << endl;
|
cerr << "synced to jack and speed == " << speed << endl;
|
||||||
stacktrace (cerr, 20);
|
|
||||||
warning << _("Global varispeed cannot be supported while Ardour is connected to JACK transport control")
|
warning << _("Global varispeed cannot be supported while Ardour is connected to JACK transport control")
|
||||||
<< endmsg;
|
<< endmsg;
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue