summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/interpolation.h
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/ardour/interpolation.h
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/ardour/interpolation.h')
-rw-r--r--libs/ardour/ardour/interpolation.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/ardour/interpolation.h b/libs/ardour/ardour/interpolation.h
index 3c661d8592..4b6a66d54b 100644
--- a/libs/ardour/ardour/interpolation.h
+++ b/libs/ardour/ardour/interpolation.h
@@ -60,19 +60,19 @@ public:
class LIBARDOUR_API LinearInterpolation : public Interpolation {
public:
- framecnt_t interpolate (int channel, framecnt_t nframes, Sample* input, Sample* output);
+ samplecnt_t interpolate (int channel, samplecnt_t nframes, Sample* input, Sample* output);
};
class LIBARDOUR_API CubicInterpolation : public Interpolation {
public:
- framecnt_t interpolate (int channel, framecnt_t nframes, Sample* input, Sample* output);
+ samplecnt_t interpolate (int channel, samplecnt_t nframes, Sample* input, Sample* output);
};
class BufferSet;
class LIBARDOUR_API CubicMidiInterpolation : public Interpolation {
public:
- framecnt_t distance (framecnt_t nframes, bool roll = true);
+ samplecnt_t distance (samplecnt_t nframes, bool roll = true);
};
} // namespace ARDOUR