change Audio backend sample time methods to use a 64 bit timeline
[ardour.git] / libs / ardour / ardour / slave.h
index e86296b3552dc038333832f419450171a50049c8..8396a337d7d6e70c8efbe9b9d439570d76e7429e 100644 (file)
@@ -189,7 +189,7 @@ class LIBARDOUR_API ISlaveSessionProxy {
        virtual framepos_t audible_frame ()             const   { return 0; }
        virtual framepos_t transport_frame ()           const   { return 0; }
        virtual pframes_t  frames_since_cycle_start ()  const   { return 0; }
-       virtual pframes_t  sample_time_at_cycle_start() const   { return 0; }
+       virtual framepos_t sample_time_at_cycle_start() const   { return 0; }
        virtual framepos_t frame_time ()                const   { return 0; }
 
        virtual void request_locate (framepos_t /*frame*/, bool with_roll = false) {
@@ -212,7 +212,7 @@ class LIBARDOUR_API SlaveSessionProxy : public ISlaveSessionProxy {
        framepos_t audible_frame ()              const;
        framepos_t transport_frame ()            const;
        pframes_t  frames_since_cycle_start ()   const;
-       pframes_t  sample_time_at_cycle_start()  const;
+       framepos_t sample_time_at_cycle_start()  const;
        framepos_t frame_time ()                 const;
 
        void request_locate (framepos_t frame, bool with_roll = false);