From 30b087ab3d28f1585987fa3f6ae006562ae192e3 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 18 Sep 2017 12:39:17 -0400 Subject: 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 --- libs/ardour/reverse.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libs/ardour/reverse.cc') 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 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 region = boost::dynamic_pointer_cast(r); @@ -87,7 +87,7 @@ Reverse::run (boost::shared_ptr 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]); } -- cgit v1.2.3