1
0
mirror of https://github.com/ScrelliCopter/VGM-Tools synced 2025-02-21 04:09:25 +11:00

neotools: make adpcmb decoder work on nibble pairs like adpcma

This commit is contained in:
2023-12-29 03:39:33 +11:00
parent 70bbf3d0d1
commit 5b28c18472
2 changed files with 3 additions and 11 deletions

View File

@@ -16,9 +16,7 @@ void adpcmBEncode(AdpcmBEncoderState* encoder, const int16_t* restrict in, uint8
typedef struct AdpcmBDecoderState
{
int shift, step;
long xn, stepSize;
} AdpcmBDecoderState;
void adpcmBDecoderInit(AdpcmBDecoderState* decoder);