| 65 | } |
| 66 | |
| 67 | void DEINTERLEAVE2( AudioHLECommand command) |
| 68 | { |
| 69 | #ifdef DEBUG_AUDIO |
| 70 | DBGConsole_Msg(0, "DEINTERLEAVE2"); |
| 71 | #endif |
| 72 | u16 count( command.Abi2Deinterleave.Count ); |
| 73 | u16 out( command.Abi2Deinterleave.Out ); |
| 74 | u16 in( command.Abi2Deinterleave.In ); |
| 75 | |
| 76 | gAudioHLEState.Deinterleave( out, in, count ); |
| 77 | } |
| 78 | |
| 79 | void INTERLEAVE2( AudioHLECommand command) |
| 80 | { |
nothing calls this directly
no test coverage detected