summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2022-05-18 19:58:27 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-05-18 19:58:27 +0000
commitbc685c9b6b3eca629b4dffb84cfb5c96aab6d9c2 (patch)
tree98d273654257eb86fccc44a3d3369d1fce892510
parent4ab7e8a8069f4acbcf87212dbb7d3147e80968c3 (diff)
parent1e7ea9068a48adba2a1ea65b264bc88fe516e9cd (diff)
downloadsonivox-bc685c9b6b3eca629b4dffb84cfb5c96aab6d9c2.tar.gz
Merge "Fix misleading indentation." am: 1e7ea9068a
Original change: https://android-review.googlesource.com/c/platform/external/sonivox/+/2100699 Change-Id: I137326a9a17acec83ccdc95dc375e2cefdcdec80 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--arm-wt-22k/lib_src/eas_mdls.c41
1 files changed, 21 insertions, 20 deletions
diff --git a/arm-wt-22k/lib_src/eas_mdls.c b/arm-wt-22k/lib_src/eas_mdls.c
index fac6987..6771261 100644
--- a/arm-wt-22k/lib_src/eas_mdls.c
+++ b/arm-wt-22k/lib_src/eas_mdls.c
@@ -1340,31 +1340,32 @@ static EAS_RESULT Parse_data (SDLS_SYNTHESIZER_DATA *pDLSData, EAS_I32 pos, EAS_
if ((result = EAS_HWFileSeek(pDLSData->hwInstData, pDLSData->fileHandle, pos)) != EAS_SUCCESS)
return result;
- p = pSample;
+ p = pSample;
- while (size)
+ while (size)
+ {
+ /* read a small chunk of data and convert it */
+ count = (size < SAMPLE_CONVERT_CHUNK_SIZE ? size : SAMPLE_CONVERT_CHUNK_SIZE);
+ if ((result = EAS_HWReadFile(pDLSData->hwInstData, pDLSData->fileHandle, convBuf, count, &count)) != EAS_SUCCESS)
{
- /* read a small chunk of data and convert it */
- count = (size < SAMPLE_CONVERT_CHUNK_SIZE ? size : SAMPLE_CONVERT_CHUNK_SIZE);
- if ((result = EAS_HWReadFile(pDLSData->hwInstData, pDLSData->fileHandle, convBuf, count, &count)) != EAS_SUCCESS)
- {
- return result;
- }
- size -= count;
- if (pWsmp->bitsPerSample == 16)
- {
- memcpy(p, convBuf, count);
- p += count >> 1;
- }
- else
+ return result;
+ }
+ size -= count;
+ if (pWsmp->bitsPerSample == 16)
+ {
+ memcpy(p, convBuf, count);
+ p += count >> 1;
+ }
+ else
+ {
+ for(i=0; i<count; i++)
{
- for(i=0; i<count; i++)
- {
- *p++ = (short)((convBuf[i] ^ 0x80) << 8);
- }
+ *p++ = (short)((convBuf[i] ^ 0x80) << 8);
}
-
}
+
+ }
+
/* for looped samples, copy the last sample to the end */
if (pWsmp->loopLength)
{