display results of a bounce in the region list
[ardour.git] / libs / ardour / reverse.cc
index 4d8dd22aa4f4b58ca1c63c1bf0283f8a4825e309..eb68a09049c1e6194e0f4aacde8a450d71353c6b 100644 (file)
@@ -47,12 +47,12 @@ Reverse::run (boost::shared_ptr<AudioRegion> region)
 {
        SourceList nsrcs;
        SourceList::iterator si;
-       const jack_nframes_t blocksize = 256 * 1048;
+       const nframes_t blocksize = 256 * 1048;
        Sample buf[blocksize];
-       jack_nframes_t fpos;
-       jack_nframes_t fend;
-       jack_nframes_t fstart;
-       jack_nframes_t to_read;
+       nframes_t fpos;
+       nframes_t fend;
+       nframes_t fstart;
+       nframes_t to_read;
        int ret = -1;
 
        /* create new sources */
@@ -82,13 +82,13 @@ Reverse::run (boost::shared_ptr<AudioRegion> region)
 
                        /* read it in */
                        
-                       if (region->source (n).read (buf, fpos, to_read) != to_read) {
+                       if (region->source (n)->read (buf, fpos, to_read) != to_read) {
                                goto out;
                        }
                        
                        /* swap memory order */
                        
-                       for (jack_nframes_t i = 0; i < to_read/2; ++i) {
+                       for (nframes_t i = 0; i < to_read/2; ++i) {
                                swap (buf[i],buf[to_read-1-i]);
                        }
                        
@@ -117,7 +117,6 @@ Reverse::run (boost::shared_ptr<AudioRegion> region)
        if (ret) {
                for (si = nsrcs.begin(); si != nsrcs.end(); ++si) {
                        (*si)->mark_for_remove ();
-                       delete *si;
                }
        }