Mercurial > hg > svcore
diff data/model/Model.h @ 1040:a1cd5abcb38b cxx11
Introduce and use a samplerate type
author | Chris Cannam |
---|---|
date | Wed, 04 Mar 2015 12:01:04 +0000 |
parents | cc27f35aa75c |
children | 57633d605547 |
line wrap: on
line diff
--- a/data/model/Model.h Tue Mar 03 17:09:19 2015 +0000 +++ b/data/model/Model.h Wed Mar 04 12:01:04 2015 +0000 @@ -61,13 +61,13 @@ /** * Return the frame rate in frames per second. */ - virtual int getSampleRate() const = 0; + virtual sv_samplerate_t getSampleRate() const = 0; /** * Return the frame rate of the underlying material, if the model * itself has already been resampled. */ - virtual int getNativeRate() const { return getSampleRate(); } + virtual sv_samplerate_t getNativeRate() const { return getSampleRate(); } /** * Return the "work title" of the model, if known.