Add option to limit automatable control parmaters
[ardour.git] / libs / ardour / reverse.cc
index 06fafb0ca45c2ff97185c73f09f3afd0157a0b9a..9f829ba0d6a5542fde6c8623ef833ab0887113af 100644 (file)
@@ -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);
@@ -56,7 +56,7 @@ Reverse::run (boost::shared_ptr<Region> r, Progress*)
 
        /* create new sources */
 
-       if (make_new_sources (region, nsrcs)) {
+       if (make_new_sources (region, nsrcs, "", false)) {
                goto out;
        }
 
@@ -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]);
                        }