summaryrefslogtreecommitdiffstats
path: root/src/sources/soundsourceflac.cpp
diff options
context:
space:
mode:
authorUwe Klotz <uwe_klotz@web.de>2017-07-27 19:05:33 +0200
committerUwe Klotz <uwe_klotz@web.de>2017-11-06 22:27:20 +0100
commite1bcb821948d5e4714f7247e314b1d50c210c430 (patch)
tree87b08655279dcc15207b5c297fbc5b53e16e553b /src/sources/soundsourceflac.cpp
parent661691b7faea7281f84d4ff72854f4f14d447a14 (diff)
Rename various member functions in IndexRange
Diffstat (limited to 'src/sources/soundsourceflac.cpp')
-rw-r--r--src/sources/soundsourceflac.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sources/soundsourceflac.cpp b/src/sources/soundsourceflac.cpp
index 72d2b5cf4a..32f9c96897 100644
--- a/src/sources/soundsourceflac.cpp
+++ b/src/sources/soundsourceflac.cpp
@@ -272,7 +272,7 @@ IndexRange SoundSourceFLAC::readOrSkipSampleFrames(
DEBUG_ASSERT(isValidFrameIndex(m_curFrameIndex));
DEBUG_ASSERT(numberOfSamplesTotal >= numberOfSamplesRemaining);
- return readableFrames.splitFront(
+ return readableFrames.cutFrontRange(
samples2frames(numberOfSamplesTotal - numberOfSamplesRemaining));
}