summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAayush Soni <aayush.soni@ittiam.com>2021-10-04 22:14:00 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-10-04 22:14:00 +0000
commit299079a7d4a3b3768fc95ea4ecfad77d60b96b5b (patch)
tree428cf3250154e754aba76813cdc10dc7e6e10ab5
parent2c84596cb8d6f7a3cf0c58b5537e88bdb8e3d5bb (diff)
parent429f610b46941275f7d9d818289e6d75c711d260 (diff)
downloadsonivox-299079a7d4a3b3768fc95ea4ecfad77d60b96b5b.tar.gz
Original change: https://googleplex-android-review.googlesource.com/c/platform/external/sonivox/+/15914668 Change-Id: I2509b618f81cf60654a99251bd9639a0b6745595
-rw-r--r--arm-wt-22k/lib_src/eas_wtengine.c22
1 files changed, 12 insertions, 10 deletions
diff --git a/arm-wt-22k/lib_src/eas_wtengine.c b/arm-wt-22k/lib_src/eas_wtengine.c
index 950616e..b1ee749 100644
--- a/arm-wt-22k/lib_src/eas_wtengine.c
+++ b/arm-wt-22k/lib_src/eas_wtengine.c
@@ -202,7 +202,7 @@ void WT_Interpolate (S_WT_VOICE *pWTVoice, S_WT_INT_FRAME *pWTIntFrame)
loopEnd = (const EAS_SAMPLE*) pWTVoice->loopEnd + 1;
pSamples = (const EAS_SAMPLE*) pWTVoice->phaseAccum;
/*lint -e{713} truncation is OK */
- phaseFrac = pWTVoice->phaseFrac;
+ phaseFrac = pWTVoice->phaseFrac & PHASE_FRAC_MASK;
phaseInc = pWTIntFrame->frame.phaseIncrement;
/* fetch adjacent samples */
@@ -218,6 +218,8 @@ void WT_Interpolate (S_WT_VOICE *pWTVoice, S_WT_INT_FRAME *pWTIntFrame)
while (numSamples--) {
+ EAS_I32 nextSamplePhaseInc;
+
/* linear interpolation */
acc0 = samp2 - samp1;
acc0 = acc0 * phaseFrac;
@@ -231,19 +233,19 @@ void WT_Interpolate (S_WT_VOICE *pWTVoice, S_WT_INT_FRAME *pWTIntFrame)
/* increment phase */
phaseFrac += phaseInc;
/*lint -e{704} <avoid divide>*/
- acc0 = phaseFrac >> NUM_PHASE_FRAC_BITS;
+ nextSamplePhaseInc = phaseFrac >> NUM_PHASE_FRAC_BITS;
/* next sample */
- if (acc0 > 0) {
-
+ if (nextSamplePhaseInc > 0) {
/* advance sample pointer */
- pSamples += acc0;
- phaseFrac = (EAS_I32)((EAS_U32)phaseFrac & PHASE_FRAC_MASK);
+ pSamples += nextSamplePhaseInc;
+ phaseFrac = phaseFrac & PHASE_FRAC_MASK;
- /* check for loop end */
- acc0 = (EAS_I32) (pSamples - loopEnd);
- if (acc0 >= 0)
- pSamples = (const EAS_SAMPLE*) pWTVoice->loopStart + acc0;
+ /* decrementing pSamples by entire buffer length until second pSample is within */
+ /* loopEnd */
+ while (&pSamples[1] >= loopEnd) {
+ pSamples -= (loopEnd - (const EAS_SAMPLE*)pWTVoice->loopStart);
+ }
/* fetch new samples */
#if defined(_8_BIT_SAMPLES)