X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=libs%2Fardour%2Fardour%2Fsilentfilesource.h;h=a0bd51cc38c87ac107a739e97815514f8df6664f;hb=67ba0bd992920032cc645cb2954084f54fa59b2f;hp=cf6462247ae05ca1d07d8a7894e53bfddaf23fab;hpb=1745340c67d66d8dd92e5b3a377e935ed5eea973;p=ardour.git diff --git a/libs/ardour/ardour/silentfilesource.h b/libs/ardour/ardour/silentfilesource.h index cf6462247a..a0bd51cc38 100644 --- a/libs/ardour/ardour/silentfilesource.h +++ b/libs/ardour/ardour/silentfilesource.h @@ -27,11 +27,11 @@ namespace ARDOUR { class LIBARDOUR_API SilentFileSource : public AudioFileSource { public: - int update_header (framepos_t /*when*/, struct tm&, time_t) { return 0; } + int update_header (samplepos_t /*when*/, struct tm&, time_t) { return 0; } int flush_header () { return 0; } float sample_rate () const { return _sample_rate; } - void set_length (framecnt_t len) { _length = len; } + void set_length (samplecnt_t len) { _length = len; } void flush () {} bool destructive() const { return false; } @@ -40,9 +40,10 @@ public: bool clamped_at_unity() const { return false; } protected: + void close() {} friend class SourceFactory; - SilentFileSource (Session& s, const XMLNode& x, framecnt_t len, float srate) + SilentFileSource (Session& s, const XMLNode& x, samplecnt_t len, float srate) : Source (s, x) , AudioFileSource (s, x, false) , _sample_rate(srate) @@ -50,17 +51,17 @@ protected: _length = len; } - framecnt_t read_unlocked (Sample *dst, framepos_t /*start*/, framecnt_t cnt) const { + samplecnt_t read_unlocked (Sample *dst, samplepos_t /*start*/, samplecnt_t cnt) const { memset (dst, 0, sizeof (Sample) * cnt); return cnt; } - framecnt_t write_unlocked (Sample */*dst*/, framecnt_t /*cnt*/) { return 0; } + samplecnt_t write_unlocked (Sample */*dst*/, samplecnt_t /*cnt*/) { return 0; } void set_header_timeline_position () {} - int read_peaks_with_fpp (PeakData *peaks, framecnt_t npeaks, framepos_t /*start*/, framecnt_t /*cnt*/, - double /*frames_per_pixel*/, framecnt_t /*fpp*/) const { + int read_peaks_with_fpp (PeakData *peaks, samplecnt_t npeaks, samplepos_t /*start*/, samplecnt_t /*cnt*/, + double /*samples_per_pixel*/, samplecnt_t /*fpp*/) const { memset (peaks, 0, sizeof (PeakData) * npeaks); return 0; }