summaryrefslogtreecommitdiff
path: root/libs/audiographer/audiographer/sndfile/sndfile_reader.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/audiographer/audiographer/sndfile/sndfile_reader.h')
-rw-r--r--libs/audiographer/audiographer/sndfile/sndfile_reader.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/audiographer/audiographer/sndfile/sndfile_reader.h b/libs/audiographer/audiographer/sndfile/sndfile_reader.h
index f5f7adcb3a..f7a04f22d6 100644
--- a/libs/audiographer/audiographer/sndfile/sndfile_reader.h
+++ b/libs/audiographer/audiographer/sndfile/sndfile_reader.h
@@ -29,7 +29,7 @@ class SndfileReader
* Note that the data read is output to the outputs, as well as read into the context
* \return number of frames read
*/
- nframes_t read (ProcessContext<T> & context)
+ framecnt_t read (ProcessContext<T> & context)
{
if (throw_level (ThrowStrict) && context.channels() != channels() ) {
throw Exception (*this, boost::str (boost::format
@@ -37,7 +37,7 @@ class SndfileReader
% context.channels() % channels()));
}
- nframes_t frames_read = SndfileHandle::read (context.data(), context.frames());
+ framecnt_t const frames_read = SndfileHandle::read (context.data(), context.frames());
ProcessContext<T> c_out = context.beginning (frames_read);
if (frames_read < context.frames()) {
@@ -54,4 +54,4 @@ class SndfileReader
} // namespace
-#endif // AUDIOGRAPHER_SNDFILE_READER_H \ No newline at end of file
+#endif // AUDIOGRAPHER_SNDFILE_READER_H