diff options
author | Ladislav Zezula <zezula@volny.cz> | 2022-05-15 20:57:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-15 20:57:06 +0200 |
commit | 8f3f327697b392014cc084f4f3a3547ddb3a1b89 (patch) | |
tree | 5f6f348381c516aa3e307a41d24086da5b243acc /src/adpcm/adpcm.h | |
parent | 460354d98bc266507befe517f9f246d3b952abc9 (diff) | |
parent | 07f9be39a62b93fa3af07c2fc02dcd25edd2c00b (diff) |
Merge pull request #255 from ladislav-zezula/LZ_SupportStarcraftBeta
Support for Starcraft BETA ADPCM compression
Diffstat (limited to 'src/adpcm/adpcm.h')
-rw-r--r-- | src/adpcm/adpcm.h | 5 |
1 files changed, 3 insertions, 2 deletions
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__ |