summaryrefslogtreecommitdiff
path: root/libs/ardour/reverse.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2017-09-18 12:39:17 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2017-09-18 12:39:17 -0400
commit30b087ab3d28f1585987fa3f6ae006562ae192e3 (patch)
tree620ae0250b5d77f90a18f8c2b83be61e4fe7b0b5 /libs/ardour/reverse.cc
parentcb956e3e480716a3efd280a5287bdd7bee1cedc5 (diff)
globally change all use of "frame" to refer to audio into "sample".
Generated by tools/f2s. Some hand-editing will be required in a few places to fix up comments related to timecode and video in order to keep the legible
Diffstat (limited to 'libs/ardour/reverse.cc')
-rw-r--r--libs/ardour/reverse.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/libs/ardour/reverse.cc b/libs/ardour/reverse.cc
index b2189cf67e..9f829ba0d6 100644
--- a/libs/ardour/reverse.cc
+++ b/libs/ardour/reverse.cc
@@ -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);
@@ -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]);
}