mirror of
https://github.com/emu-russia/pureikyubu.git
synced 2025-04-02 10:42:15 -04:00
6 lines
141 B
C
6 lines
141 B
C
// GC DVD ADPCM Decoder
|
|
|
|
#pragma once
|
|
|
|
void DvdAudioInitDecoder();
|
|
void DvdAudioDecode(uint8_t adpcmBuffer[32], uint16_t pcmBuffer[2 * 28]);
|