Remove all use of nframes_t.
[ardour.git] / libs / ardour / automatable.cc
index 903ae5df75587baef6380ad9dbbebe379368cd4b..248bb96b520061cbafb5d0417fe7a50da361ae9b 100644 (file)
@@ -45,7 +45,7 @@ using namespace std;
 using namespace ARDOUR;
 using namespace PBD;
 
-nframes_t Automatable::_automation_interval = 0;
+framecnt_t Automatable::_automation_interval = 0;
 
 Automatable::Automatable(Session& session)
        : _a_session(session)
@@ -387,7 +387,7 @@ Automatable::protect_automation ()
 }
 
 void
-Automatable::automation_snapshot (nframes_t now, bool force)
+Automatable::automation_snapshot (framepos_t now, bool force)
 {
        if (force || _last_automation_snapshot > now || (now - _last_automation_snapshot) > _automation_interval) {