summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2022-05-17 14:56:57 -0700
committerElliott Hughes <enh@google.com>2022-05-18 18:51:44 +0000
commit196cde7bf2c55615663102716b5d2c3b21e54fae (patch)
tree98d273654257eb86fccc44a3d3369d1fce892510
parent4ab7e8a8069f4acbcf87212dbb7d3147e80968c3 (diff)
downloadsonivox-196cde7bf2c55615663102716b5d2c3b21e54fae.tar.gz
Fix misleading indentation.
There isn't actually a bug here, but we'd like to turn -Wmisleading-indentation on. My understanding is that -- despite this being in external/ -- we are actually the upstream for sonivox anyway, hence the fix. Test: treehugger Change-Id: I61ac054c32525b8509baafd70840fbed0f1ab7c4
-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)
{