prepare for ADPCM-B

This commit is contained in:
tildearrow 2022-02-02 23:17:16 -05:00
parent e9f9cfd518
commit 07b767bee1
2 changed files with 13 additions and 1 deletions

View file

@ -523,6 +523,8 @@ class DivEngine {
unsigned char* adpcmMem;
size_t adpcmMemLen;
unsigned char* adpcmBMem;
size_t adpcmBMemLen;
DivEngine():
output(NULL),
@ -573,6 +575,8 @@ class DivEngine {
oscBuf{NULL,NULL},
oscSize(1),
adpcmMem(NULL),
adpcmMemLen(0) {}
adpcmMemLen(0),
adpcmBMem(NULL),
adpcmBMemLen(0) {}
};
#endif