diff options
author | DeeJayLSP <djlsplays@gmail.com> | 2024-09-09 16:12:22 -0300 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-17 08:57:45 +0200 |
commit | 51c86eb085d0eb8118780ef382199dfa7fc0d169 (patch) | |
tree | 8467c24c96b8cca356f55e45521dc7498f7e39f1 /scene/resources | |
parent | 4addddd8dfcd3f3d5ce1db94a10c36678963adb9 (diff) | |
download | redot-engine-51c86eb085d0eb8118780ef382199dfa7fc0d169.tar.gz |
WAV: Fix one frame overflow at the end
(cherry picked from commit 147accdf74762ee8da012422f879db61b2ed8ebb)
Diffstat (limited to 'scene/resources')
-rw-r--r-- | scene/resources/audio_stream_wav.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/audio_stream_wav.cpp b/scene/resources/audio_stream_wav.cpp index a22c7a69cf..3b94501509 100644 --- a/scene/resources/audio_stream_wav.cpp +++ b/scene/resources/audio_stream_wav.cpp @@ -300,7 +300,7 @@ int AudioStreamPlaybackWAV::mix(AudioFrame *p_buffer, float p_rate_scale, int p_ int64_t loop_end_fp = ((int64_t)base->loop_end << MIX_FRAC_BITS); int64_t length_fp = ((int64_t)len << MIX_FRAC_BITS); int64_t begin_limit = (base->loop_mode != AudioStreamWAV::LOOP_DISABLED) ? loop_begin_fp : 0; - int64_t end_limit = (base->loop_mode != AudioStreamWAV::LOOP_DISABLED) ? loop_end_fp : length_fp; + int64_t end_limit = (base->loop_mode != AudioStreamWAV::LOOP_DISABLED) ? loop_end_fp : length_fp - MIX_FRAC_LEN; bool is_stereo = base->stereo; int32_t todo = p_frames; |