Merge branch 'master' into windows
[ardour.git] / libs / ardour / reverse.cc
index 9fcfb8c1b19786a74f2211e1646ef1c270aff591..06fafb0ca45c2ff97185c73f09f3afd0157a0b9a 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)
 {
@@ -90,7 +87,7 @@ Reverse::run (boost::shared_ptr<Region> r, Progress*)
 
                        /* 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]);
                        }