From 43e15be62f1d172ef95bf3bce9f27b3f4ab173c9 Mon Sep 17 00:00:00 2001 From: Hans Baier Date: Fri, 29 Jan 2010 07:26:22 +0000 Subject: MIDIClock_Slave: decrease default filter bandwith to make it wobble less git-svn-id: svn://localhost/ardour2/branches/3.0@6590 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/midi_clock_slave.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libs/ardour/midi_clock_slave.cc') diff --git a/libs/ardour/midi_clock_slave.cc b/libs/ardour/midi_clock_slave.cc index bd8367cab1..4c73c45f49 100644 --- a/libs/ardour/midi_clock_slave.cc +++ b/libs/ardour/midi_clock_slave.cc @@ -46,7 +46,7 @@ using namespace PBD; MIDIClock_Slave::MIDIClock_Slave (Session& s, MIDI::Port& p, int ppqn) : ppqn (ppqn) - , bandwidth (30.0 / 60.0) // 1 BpM = 1 / 60 Hz + , bandwidth (1.0 / 60.0) // 1 BpM = 1 / 60 Hz { session = (ISlaveSessionProxy *) new SlaveSessionProxy(s); rebind (p); @@ -56,7 +56,7 @@ MIDIClock_Slave::MIDIClock_Slave (Session& s, MIDI::Port& p, int ppqn) MIDIClock_Slave::MIDIClock_Slave (ISlaveSessionProxy* session_proxy, int ppqn) : session(session_proxy) , ppqn (ppqn) - , bandwidth (30.0 / 60.0) // 1 BpM = 1 / 60 Hz + , bandwidth (1.0 / 60.0) // 1 BpM = 1 / 60 Hz { reset (); } -- cgit v1.2.3