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/sndfileimportable.cc | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'libs/ardour/sndfileimportable.cc') diff --git a/libs/ardour/sndfileimportable.cc b/libs/ardour/sndfileimportable.cc index 95b269a014..f900689f77 100644 --- a/libs/ardour/sndfileimportable.cc +++ b/libs/ardour/sndfileimportable.cc @@ -47,7 +47,7 @@ SndFileImportableSource::get_timecode_info (SNDFILE* sf, SF_BROADCAST_INFO* binf * 0xffffffff 0xfffc5680 * seems to be a bug in Presonus Capture (which generated the file) * - * still since framepos_t is a signed int, ignore files that could + * still since samplepos_t is a signed int, ignore files that could * lead to negative timestamps for now. */ @@ -97,10 +97,10 @@ SndFileImportableSource::~SndFileImportableSource () { } -framecnt_t -SndFileImportableSource::read (Sample* buffer, framecnt_t nframes) +samplecnt_t +SndFileImportableSource::read (Sample* buffer, samplecnt_t nframes) { - framecnt_t per_channel = nframes / sf_info.channels; + samplecnt_t per_channel = nframes / sf_info.channels; per_channel = sf_readf_float (in.get(), buffer, per_channel); return per_channel * sf_info.channels; } @@ -111,28 +111,28 @@ SndFileImportableSource::channels () const return sf_info.channels; } -framecnt_t +samplecnt_t SndFileImportableSource::length () const { - return (framecnt_t) sf_info.frames; + return (samplecnt_t) sf_info.frames; } -framecnt_t +samplecnt_t SndFileImportableSource::samplerate () const { return sf_info.samplerate; } void -SndFileImportableSource::seek (framepos_t /*pos*/) +SndFileImportableSource::seek (samplepos_t /*pos*/) { sf_seek (in.get(), 0, SEEK_SET); } -framepos_t +samplepos_t SndFileImportableSource::natural_position () const { - return (framepos_t) timecode; + return (samplepos_t) timecode; } bool -- cgit v1.2.3