meet rhythm ferret: cute, furry and always on time (ardour build now requires fftw3...
[ardour.git] / libs / ardour / ardour / auditioner.h
index 424ede0009e8c955d1fd57f8924f8b2bf7c397f4..06d521ea219ba03a57f5ea0d5898db7617c000ef 100644 (file)
@@ -15,7 +15,6 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id$
 */
 
 #ifndef __ardour_auditioner_h__
@@ -45,7 +44,7 @@ class Auditioner : public AudioTrack
        ARDOUR::AudioPlaylist& prepare_playlist ();
        void audition_current_playlist ();
 
-       int  play_audition (jack_nframes_t nframes);
+       int  play_audition (nframes_t nframes);
 
        void cancel_audition () { 
                g_atomic_int_set (&_active, 0);
@@ -55,10 +54,10 @@ class Auditioner : public AudioTrack
 
   private:
        boost::shared_ptr<AudioRegion> the_region;
-       jack_nframes_t current_frame;
+       nframes_t current_frame;
        mutable gint _active;
        Glib::Mutex lock;
-       jack_nframes_t length;
+       nframes_t length;
 
        void drop_ports ();
        static void *_drop_ports (void *);