diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2020-11-19 03:23:46 -0800 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2020-11-19 03:23:46 -0800 |
commit | 537510afc83a43d396a3c8658da384013aade448 (patch) | |
tree | 25994aa2724e684d35f6a5e677b7f50b661a9162 /al/buffer.cpp | |
parent | ee9f0fe3063c61584e7a34d7b3ddc73d8464a29c (diff) |
Put the loop start/end in BufferStorage
Diffstat (limited to 'al/buffer.cpp')
-rw-r--r-- | al/buffer.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/al/buffer.cpp b/al/buffer.cpp index 524fb81c..10849a0a 100644 --- a/al/buffer.cpp +++ b/al/buffer.cpp @@ -554,8 +554,8 @@ void LoadData(ALCcontext *context, ALbuffer *ALBuf, ALsizei freq, ALuint size, ALBuf->mBuffer.mUserData = nullptr; ALBuf->mBuffer.mSampleLen = frames; - ALBuf->LoopStart = 0; - ALBuf->LoopEnd = ALBuf->mBuffer.mSampleLen; + ALBuf->mBuffer.mLoopStart = 0; + ALBuf->mBuffer.mLoopEnd = ALBuf->mBuffer.mSampleLen; } /** Prepares the buffer to use the specified callback, using the specified format. */ @@ -620,8 +620,8 @@ void PrepareCallback(ALCcontext *context, ALbuffer *ALBuf, ALsizei freq, ALBuf->mBuffer.mAmbiOrder = ambiorder; ALBuf->mBuffer.mSampleLen = 0; - ALBuf->LoopStart = 0; - ALBuf->LoopEnd = ALBuf->mBuffer.mSampleLen; + ALBuf->mBuffer.mLoopStart = 0; + ALBuf->mBuffer.mLoopEnd = ALBuf->mBuffer.mSampleLen; } @@ -1262,8 +1262,8 @@ START_API_FUNC values[0], values[1], buffer); else { - albuf->LoopStart = static_cast<ALuint>(values[0]); - albuf->LoopEnd = static_cast<ALuint>(values[1]); + albuf->mBuffer.mLoopStart = static_cast<ALuint>(values[0]); + albuf->mBuffer.mLoopEnd = static_cast<ALuint>(values[1]); } break; @@ -1457,8 +1457,8 @@ START_API_FUNC else switch(param) { case AL_LOOP_POINTS_SOFT: - values[0] = static_cast<ALint>(albuf->LoopStart); - values[1] = static_cast<ALint>(albuf->LoopEnd); + values[0] = static_cast<ALint>(albuf->mBuffer.mLoopStart); + values[1] = static_cast<ALint>(albuf->mBuffer.mLoopEnd); break; default: |