new transport slave/master implementation, libs/ edition
[ardour.git] / libs / ardour / disk_io.cc
index decacc850fbaba73121dae7ac48c236169467153..427f3644041db6ceec5e5858835c89a2beb74b9c 100644 (file)
@@ -50,7 +50,6 @@ DiskIOProcessor::DiskIOProcessor (Session& s, string const & str, Flag f)
        : Processor (s, str)
        , _flags (f)
        , i_am_the_modifier (false)
-       , _seek_required (false)
        , _slaved (false)
        , in_set_state (false)
        , playback_sample (0)
@@ -206,21 +205,6 @@ DiskIOProcessor::non_realtime_locate (samplepos_t location)
        seek (location, true);
 }
 
-void
-DiskIOProcessor::non_realtime_speed_change ()
-{
-       if (_seek_required) {
-               seek (_session.transport_sample(), true);
-               _seek_required = false;
-       }
-}
-
-bool
-DiskIOProcessor::realtime_speed_change ()
-{
-       return true;
-}
-
 int
 DiskIOProcessor::set_state (const XMLNode& node, int version)
 {