summaryrefslogtreecommitdiff
path: root/libs/ardour/reverse.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/reverse.cc')
-rw-r--r--libs/ardour/reverse.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/libs/ardour/reverse.cc b/libs/ardour/reverse.cc
index b2189cf67e..9f829ba0d6 100644
--- a/libs/ardour/reverse.cc
+++ b/libs/ardour/reverse.cc
@@ -43,11 +43,11 @@ Reverse::run (boost::shared_ptr<Region> r, Progress*)
{
SourceList nsrcs;
SourceList::iterator si;
- framecnt_t blocksize = 256 * 1024;
+ samplecnt_t blocksize = 256 * 1024;
Sample* buf = 0;
- framepos_t fpos;
- framepos_t fstart;
- framecnt_t to_read;
+ samplepos_t fpos;
+ samplepos_t fstart;
+ samplecnt_t to_read;
int ret = -1;
boost::shared_ptr<AudioRegion> region = boost::dynamic_pointer_cast<AudioRegion>(r);
@@ -87,7 +87,7 @@ Reverse::run (boost::shared_ptr<Region> r, Progress*)
/* swap memory order */
- for (framecnt_t i = 0; i < to_read/2; ++i) {
+ for (samplecnt_t i = 0; i < to_read/2; ++i) {
swap (buf[i],buf[to_read-1-i]);
}