Don't strip suffixes twice from peakfile names, otherwise source names like fred...
[ardour.git] / libs / ardour / reverse.cc
index a35858ce97b146ff2ae06a7fab73683910463151..675ccb4c522b4c3fbbfcbbe6d4514e175c8c5678 100644 (file)
@@ -42,15 +42,15 @@ Reverse::~Reverse ()
 }
 
 int
-Reverse::run (boost::shared_ptr<Region> r)
+Reverse::run (boost::shared_ptr<Region> r, Progress* progress)
 {
        SourceList nsrcs;
        SourceList::iterator si;
-       nframes_t blocksize = 256 * 1024;
+       framecnt_t blocksize = 256 * 1024;
        Sample* buf = 0;
-       nframes_t fpos;
-       nframes_t fstart;
-       nframes_t to_read;
+       framepos_t fpos;
+       framepos_t fstart;
+       framecnt_t to_read;
        int ret = -1;
 
        boost::shared_ptr<AudioRegion> region = boost::dynamic_pointer_cast<AudioRegion>(r);