MCPcopy Create free account
hub / github.com/DaedalusX64/daedalus / Deinterleave

Method Deinterleave

Source/HLEAudio/AudioHLEProcessor.cpp:863–871  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

861}
862
863void AudioHLEState::Deinterleave( u16 outaddr, u16 inaddr, u16 count )
864{
865 while( count-- )
866 {
867 *(s16 *)(Buffer+(outaddr^2)) = *(s16 *)(Buffer+(inaddr^2));
868 outaddr += 2;
869 inaddr += 4;
870 }
871}
872
873void AudioHLEState::Mixer( u16 dmemout, u16 dmemin, s32 gain )
874{

Callers 1

DEINTERLEAVE2Function · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected