From 4321c59d8431eaf72d7b36c047859b72bca02318 Mon Sep 17 00:00:00 2001 From: Ladislav Zezula Date: Thu, 12 May 2022 15:44:15 +0200 Subject: Added implementation of Srarctaft I BETA ADPCM decompression --- src/adpcm/adpcm.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/adpcm/adpcm.h') diff --git a/src/adpcm/adpcm.h b/src/adpcm/adpcm.h index b1bf361..22a8095 100644 --- a/src/adpcm/adpcm.h +++ b/src/adpcm/adpcm.h @@ -20,7 +20,8 @@ //----------------------------------------------------------------------------- // Public functions -int CompressADPCM (void * pvOutBuffer, int dwOutLength, void * pvInBuffer, int dwInLength, int nCmpType, int ChannelCount); -int DecompressADPCM(void * pvOutBuffer, int dwOutLength, void * pvInBuffer, int dwInLength, int ChannelCount); +int CompressADPCM (void * pvOutBuffer, int dwOutLength, void * pvInBuffer, int dwInLength, int nCmpType, int ChannelCount); +int DecompressADPCM (void * pvOutBuffer, int dwOutLength, void * pvInBuffer, int dwInLength, int ChannelCount); +int DecompressADPCM_SC1B(void * pvOutBuffer, int cbOutBuffer, void * pvInBuffer, int cbInBuffer, int ChannelCount); #endif // __ADPCM_H__ -- cgit v1.2.3