DSP/HLE: Implement mixer processing

This commit is contained in:
MerryMage
2016-04-27 07:22:39 +01:00
parent 6f6af6928f
commit 6542c60602
5 changed files with 311 additions and 11 deletions

View File

@ -428,7 +428,7 @@ ASSERT_DSP_STRUCT(DspStatus, 32);
/// Final mixed output in PCM16 stereo format, what you hear out of the speakers.
/// When the application writes to this region it has no effect.
struct FinalMixSamples {
s16_le pcm16[2 * samples_per_frame];
s16_le pcm16[samples_per_frame][2];
};
ASSERT_DSP_STRUCT(FinalMixSamples, 640);