summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKiritoDv <kiritodev01@gmail.com>2024-12-24 23:16:11 -0600
committerLywx <kiritodev01@gmail.com>2024-12-24 23:25:42 -0600
commitfc245b22922741ce15bb4eea8f4bac81adaa1560 (patch)
treed43aadf597ae9298cc22a284651180ee58bcad56
parentf40105e778ae46f19beabe7fe3684a592e9ae102 (diff)
Reverted some unnecesary things
-rw-r--r--src/audio/audio_seqplayer.c14
-rw-r--r--src/audio/audio_synthesis.c11
2 files changed, 12 insertions, 13 deletions
diff --git a/src/audio/audio_seqplayer.c b/src/audio/audio_seqplayer.c
index b49e7041..9ddaf70c 100644
--- a/src/audio/audio_seqplayer.c
+++ b/src/audio/audio_seqplayer.c
@@ -145,12 +145,14 @@ void AudioSeq_SeqLayerDisable(SequenceLayer* layer) {
}
void AudioSeq_SeqLayerFree(SequenceChannel* channel, s32 layerIndex) {
- SequenceLayer* layer = channel->layers[layerIndex];
-
- if (layer != NULL) {
- AudioSeq_AudioListPushBack(&gLayerFreeList, &layer->listItem);
- AudioSeq_SeqLayerDisable(layer);
- channel->layers[layerIndex] = NULL;
+ if (layerIndex < 4) {
+ SequenceLayer* layer = channel->layers[layerIndex];
+
+ if (layer != NULL) {
+ AudioSeq_AudioListPushBack(&gLayerFreeList, &layer->listItem);
+ AudioSeq_SeqLayerDisable(layer);
+ channel->layers[layerIndex] = NULL;
+ }
}
}
diff --git a/src/audio/audio_synthesis.c b/src/audio/audio_synthesis.c
index a6216e21..1e422c17 100644
--- a/src/audio/audio_synthesis.c
+++ b/src/audio/audio_synthesis.c
@@ -888,7 +888,6 @@ Acmd* AudioSynth_ProcessNote(s32 noteIndex, NoteSubEu* noteSub, NoteSynthesisSta
s32 dmemUncompressedAddrOffset1;
u32 sampleslenFixedPoint;
u8* samplesToLoadAddr;
- uintptr_t buffAddr;
s32 gain;
u32 nEntries;
s32 aligned;
@@ -933,7 +932,7 @@ Acmd* AudioSynth_ProcessNote(s32 noteIndex, NoteSubEu* noteSub, NoteSynthesisSta
noteSamplesDmemAddrBeforeResampling = DMEM_UNCOMPRESSED_NOTE + (synthState->samplePosInt * SAMPLE_SIZE);
synthState->samplePosInt += numSamplesToLoad;
} else {
- bookSample = *((Sample**) noteSub->waveSampleAddr);
+ bookSample = *(noteSub->waveSampleAddr);
loopInfo = bookSample->loop;
endPos = loopInfo->end;
@@ -1166,10 +1165,9 @@ Acmd* AudioSynth_ProcessNote(s32 noteIndex, NoteSubEu* noteSub, NoteSynthesisSta
case 2:
switch (curPart) {
case 0:
- aInterl(aList++, skipBytes + DMEM_UNCOMPRESSED_NOTE,
- DMEM_TEMP + (SAMPLES_PER_FRAME * SAMPLE_SIZE), ALIGN8(numSamplesToLoadAdj / 2));
+ aInterl(aList++, skipBytes + DMEM_UNCOMPRESSED_NOTE, DMEM_WET_SCRATCH, ALIGN8(numSamplesToLoadAdj / 2));
resampledTempLen = numSamplesToLoadAdj;
- noteSamplesDmemAddrBeforeResampling = DMEM_TEMP + (SAMPLES_PER_FRAME * SAMPLE_SIZE);
+ noteSamplesDmemAddrBeforeResampling = DMEM_WET_SCRATCH;
if (noteSub->bitField0.finished) {
aClearBuffer(aList++, resampledTempLen + noteSamplesDmemAddrBeforeResampling,
numSamplesToLoadAdj + SAMPLES_PER_FRAME);
@@ -1177,8 +1175,7 @@ Acmd* AudioSynth_ProcessNote(s32 noteIndex, NoteSubEu* noteSub, NoteSynthesisSta
break;
case 1:
- aInterl(aList++, skipBytes + DMEM_UNCOMPRESSED_NOTE,
- resampledTempLen + DMEM_TEMP + (SAMPLES_PER_FRAME * SAMPLE_SIZE),
+ aInterl(aList++, skipBytes + DMEM_UNCOMPRESSED_NOTE, resampledTempLen + DMEM_WET_SCRATCH,
ALIGN8(numSamplesToLoadAdj / 2));
break;
}