audio_diskstream.h/session.h: Use simple cubic interpolation now instead of linear interpolation for varispeed

git-svn-id: svn://localhost/ardour2/branches/3.0@5419 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Hans Baier 2009-07-23 16:55:45 +00:00
parent 19d89fc1dc
commit e2a2b72bc0
2 changed files with 2 additions and 2 deletions

View File

@ -146,7 +146,7 @@ class AudioDiskstream : public Diskstream
}
}
LinearInterpolation interpolation;
CubicInterpolation interpolation;
XMLNode* deprecated_io_node;

View File

@ -1019,7 +1019,7 @@ class Session : public PBD::StatefulDestructible, public boost::noncopyable
volatile double _transport_speed;
double _last_transport_speed;
double _target_transport_speed;
LinearInterpolation interpolation;
CubicInterpolation interpolation;
bool auto_play_legal;
nframes_t _last_slave_transport_frame;