Update Spanish translation
[ardour.git] / libs / ardour / reverse.cc
index a35858ce97b146ff2ae06a7fab73683910463151..b2189cf67e5c3a184224398fd57ff8b5a708be62 100644 (file)
 
 #include <algorithm>
 
-#include "pbd/basename.h"
-
-#include "ardour/types.h"
-#include "ardour/reverse.h"
-#include "ardour/audiofilesource.h"
-#include "ardour/session.h"
 #include "ardour/audioregion.h"
-
-#include "i18n.h"
+#include "ardour/audiosource.h"
+#include "ardour/reverse.h"
+#include "ardour/types.h"
 
 using namespace std;
 using namespace ARDOUR;
 
+namespace ARDOUR { class Progress; class Session; }
+
 Reverse::Reverse (Session& s)
        : Filter (s)
 {
@@ -42,15 +39,15 @@ Reverse::~Reverse ()
 }
 
 int
-Reverse::run (boost::shared_ptr<Region> r)
+Reverse::run (boost::shared_ptr<Region> r, 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);
@@ -59,7 +56,7 @@ Reverse::run (boost::shared_ptr<Region> r)
 
        /* create new sources */
 
-       if (make_new_sources (region, nsrcs)) {
+       if (make_new_sources (region, nsrcs, "", false)) {
                goto out;
        }
 
@@ -90,7 +87,7 @@ Reverse::run (boost::shared_ptr<Region> r)
 
                        /* swap memory order */
 
-                       for (nframes_t i = 0; i < to_read/2; ++i) {
+                       for (framecnt_t i = 0; i < to_read/2; ++i) {
                                swap (buf[i],buf[to_read-1-i]);
                        }